Skip to content

Commit ad64ede

Browse files
committed
Merge branch '2023.06-software.eessi.io' of github-trz:EESSI/software-layer into 2023.06-a64fx-2023a-eb491-apps-2
2 parents b4aee77 + d12484b commit ad64ede

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+2359
-49
lines changed

.github/workflows/test-software.eessi.io.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
EESSI_SOFTWARE_SUBDIR_OVERRIDE: aarch64/neoverse_n1
2828
- runs_on: ubuntu-24.04-arm
2929
EESSI_SOFTWARE_SUBDIR_OVERRIDE: aarch64/neoverse_v1
30+
- runs_on: ubuntu-24.04-arm
31+
EESSI_SOFTWARE_SUBDIR_OVERRIDE: aarch64/nvidia/grace
3032
# x86_64 CPU targets
3133
- runs_on: ubuntu-24.04
3234
EESSI_SOFTWARE_SUBDIR_OVERRIDE: x86_64/amd/zen2
@@ -40,12 +42,18 @@ jobs:
4042
EESSI_SOFTWARE_SUBDIR_OVERRIDE: x86_64/intel/sapphirerapids
4143
- runs_on: ubuntu-24.04
4244
EESSI_SOFTWARE_SUBDIR_OVERRIDE: x86_64/intel/skylake_avx512
45+
- runs_on: ubuntu-24.04
46+
EESSI_SOFTWARE_SUBDIR_OVERRIDE: x86_64/intel/icelake
47+
- runs_on: ubuntu-24.04
48+
EESSI_SOFTWARE_SUBDIR_OVERRIDE: x86_64/intel/cascadelake
4349
- runs_on: ubuntu-24.04
4450
EESSI_SOFTWARE_SUBDIR_OVERRIDE: x86_64/generic
4551
runs-on: ${{ matrix.runs_on }}
4652
steps:
4753
- name: Check out software-layer repository
4854
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
55+
with:
56+
fetch-depth: 0 # Fetch all history for all branches and tags
4957

5058
- name: Mount EESSI CernVM-FS pilot repository
5159
uses: cvmfs-contrib/github-action-cvmfs@55899ca74cf78ab874bdf47f5a804e47c198743c # v4.0
@@ -126,3 +134,28 @@ jobs:
126134
echo "captured missing package; test PASSED"
127135
exit 0
128136
fi
137+
138+
- name: Check that EasyBuild hook is up to date
139+
if: ${{ github.event_name == 'pull_request' }}
140+
run: |
141+
FILE="eb_hooks.py"
142+
TEMP_FILE="$(mktemp)"
143+
144+
# Fetch base branch
145+
git fetch origin ${{ github.base_ref }}
146+
147+
# Check if the hooks has changed in the PR
148+
if git diff --name-only origin/${{ github.base_ref }}...HEAD | grep -q "^$FILE$"; then
149+
echo "Hooks changed in PR. Using PR version."
150+
cp "$FILE" "$TEMP_FILE"
151+
else
152+
echo "File not changed in PR. Using default branch version."
153+
git show origin/${{ github.base_ref }}:$FILE > "$TEMP_FILE"
154+
fi
155+
156+
# Compare the hooks to what is shipped in the repository
157+
# (it is overkill, but harmless, to do this for every architecture)
158+
export EESSI_SOFTWARE_SUBDIR_OVERRIDE=${{matrix.EESSI_SOFTWARE_SUBDIR_OVERRIDE}}
159+
source /cvmfs/software.eessi.io/versions/${EESSI_VERSION}/init/bash
160+
module load EESSI-extend
161+
diff "$TEMP_FILE" "$EASYBUILD_HOOKS"

.github/workflows/test_compare_stacks.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
- x86_64/intel/haswell
3232
- x86_64/intel/skylake_avx512
3333
- x86_64/intel/sapphirerapids
34+
- x86_64/intel/icelake
35+
- x86_64/intel/cascadelake
3436
steps:
3537
- name: Check out software-layer repository
3638
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
easyconfigs:
2+
- Siesta-5.2.2-foss-2023a.eb:
3+
options:
4+
# see https://github.com/easybuilders/easybuild-easyconfigs/pull/22799
5+
from-commit: 0f843163c223d8c5397d1945123913108ed2e0f5
6+
# Siesta testsuite fails in Deucalion's a64fx EESSI build environment
7+
# but skipping the tests during build and then running them with the
8+
# installed module works, so skipping the tests only in this case
9+
skip-test-step: True
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# 2025.04.15
2+
# Rebuild CUDA and OSU-Micro-Benchmarks-CUDA software for cc70
3+
easyconfigs:
4+
- CUDA-12.1.1.eb:
5+
options:
6+
accept-eula-for: CUDA
7+
# see https://github.com/easybuilders/easybuild-easyblocks/pull/3516
8+
include-easyblocks-from-commit: 3469151ce7e4f85415c877dee555aeea7691c757
9+
- CUDA-Samples-12.1-GCC-12.3.0-CUDA-12.1.1.eb
10+
- UCX-CUDA-1.14.1-GCCcore-12.3.0-CUDA-12.1.1.eb
11+
- UCC-CUDA-1.2.0-GCCcore-12.3.0-CUDA-12.1.1.eb
12+
- OSU-Micro-Benchmarks-7.2-gompi-2023a-CUDA-12.1.1.eb
13+
- CUDA-12.4.0.eb:
14+
options:
15+
accept-eula-for: CUDA
16+
include-easyblocks-from-commit: 3469151ce7e4f85415c877dee555aeea7691c757
17+
- UCX-CUDA-1.15.0-GCCcore-13.2.0-CUDA-12.4.0.eb
18+
- UCC-CUDA-1.2.0-GCCcore-13.2.0-CUDA-12.4.0.eb:
19+
options:
20+
# see https://github.com/easybuilders/easybuild-easyconfigs/pull/21565
21+
from-commit: 46141a3f40e699433fac03af2d3ed81bd5a62da7
22+
- OSU-Micro-Benchmarks-7.5-gompi-2023b-CUDA-12.4.0.eb:
23+
options:
24+
# see https://github.com/easybuilders/easybuild-easyconfigs/pull/21926
25+
# from-commit: de79ec74eb076e1aceda5e21235a73c05ed6764c
26+
# use merge commit
27+
from-commit: f3bd10b19f7caf4de3302bc7a73749341db9c7d8
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# 2025.05.06
2+
# Build CUDA and OSU-Micro-Benchmarks-CUDA software for cc80
3+
easyconfigs:
4+
- CUDA-12.1.1.eb:
5+
options:
6+
accept-eula-for: CUDA
7+
# see https://github.com/easybuilders/easybuild-easyblocks/pull/3516
8+
include-easyblocks-from-commit: 3469151ce7e4f85415c877dee555aeea7691c757
9+
- CUDA-Samples-12.1-GCC-12.3.0-CUDA-12.1.1.eb
10+
- UCX-CUDA-1.14.1-GCCcore-12.3.0-CUDA-12.1.1.eb
11+
- UCC-CUDA-1.2.0-GCCcore-12.3.0-CUDA-12.1.1.eb
12+
- OSU-Micro-Benchmarks-7.2-gompi-2023a-CUDA-12.1.1.eb
13+
- CUDA-12.4.0.eb:
14+
options:
15+
accept-eula-for: CUDA
16+
include-easyblocks-from-commit: 3469151ce7e4f85415c877dee555aeea7691c757
17+
- UCX-CUDA-1.15.0-GCCcore-13.2.0-CUDA-12.4.0.eb
18+
- UCC-CUDA-1.2.0-GCCcore-13.2.0-CUDA-12.4.0.eb:
19+
options:
20+
# see https://github.com/easybuilders/easybuild-easyconfigs/pull/21565
21+
from-commit: 46141a3f40e699433fac03af2d3ed81bd5a62da7
22+
- OSU-Micro-Benchmarks-7.5-gompi-2023b-CUDA-12.4.0.eb:
23+
options:
24+
# see https://github.com/easybuilders/easybuild-easyconfigs/pull/21926
25+
# from-commit: de79ec74eb076e1aceda5e21235a73c05ed6764c
26+
# use merge commit
27+
from-commit: f3bd10b19f7caf4de3302bc7a73749341db9c7d8
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# 2025.05.06
2+
# Build CUDA and OSU-Micro-Benchmarks-CUDA software for cc90
3+
easyconfigs:
4+
- CUDA-12.1.1.eb:
5+
options:
6+
accept-eula-for: CUDA
7+
# see https://github.com/easybuilders/easybuild-easyblocks/pull/3516
8+
include-easyblocks-from-commit: 3469151ce7e4f85415c877dee555aeea7691c757
9+
- CUDA-Samples-12.1-GCC-12.3.0-CUDA-12.1.1.eb
10+
- UCX-CUDA-1.14.1-GCCcore-12.3.0-CUDA-12.1.1.eb
11+
- UCC-CUDA-1.2.0-GCCcore-12.3.0-CUDA-12.1.1.eb
12+
- OSU-Micro-Benchmarks-7.2-gompi-2023a-CUDA-12.1.1.eb
13+
- CUDA-12.4.0.eb:
14+
options:
15+
accept-eula-for: CUDA
16+
include-easyblocks-from-commit: 3469151ce7e4f85415c877dee555aeea7691c757
17+
- UCX-CUDA-1.15.0-GCCcore-13.2.0-CUDA-12.4.0.eb
18+
- UCC-CUDA-1.2.0-GCCcore-13.2.0-CUDA-12.4.0.eb:
19+
options:
20+
# see https://github.com/easybuilders/easybuild-easyconfigs/pull/21565
21+
from-commit: 46141a3f40e699433fac03af2d3ed81bd5a62da7
22+
- OSU-Micro-Benchmarks-7.5-gompi-2023b-CUDA-12.4.0.eb:
23+
options:
24+
# see https://github.com/easybuilders/easybuild-easyconfigs/pull/21926
25+
# from-commit: de79ec74eb076e1aceda5e21235a73c05ed6764c
26+
# use merge commit
27+
from-commit: f3bd10b19f7caf4de3302bc7a73749341db9c7d8
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
easyconfigs:
2+
- Nextflow-24.10.2.eb
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# 035-eb-4.9.0.yml: total build duration = 607 minutes
2+
easyconfigs:
3+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/PyTorch/2.1.2-foss-2023a/easybuild/PyTorch-2.1.2-foss-2023a.eb:
4+
options:
5+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/PyTorch/2.1.2-foss-2023a/easybuild/reprod/easyblocks/*.py
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
# 036-eb-4.9.0.yml: total build duration = 132 minutes
2+
easyconfigs:
3+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/libgd/2.3.3-GCCcore-12.3.0/easybuild/libgd-2.3.3-GCCcore-12.3.0.eb:
4+
options:
5+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/libgd/2.3.3-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
6+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Pango/1.50.14-GCCcore-12.3.0/easybuild/Pango-1.50.14-GCCcore-12.3.0.eb:
7+
options:
8+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Pango/1.50.14-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
9+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/libcerf/2.3-GCCcore-12.3.0/easybuild/libcerf-2.3-GCCcore-12.3.0.eb:
10+
options:
11+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/libcerf/2.3-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
12+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Lua/5.4.6-GCCcore-12.3.0/easybuild/Lua-5.4.6-GCCcore-12.3.0.eb:
13+
options:
14+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Lua/5.4.6-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
15+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/gnuplot/5.4.8-GCCcore-12.3.0/easybuild/gnuplot-5.4.8-GCCcore-12.3.0.eb:
16+
options:
17+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/gnuplot/5.4.8-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
18+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/hypothesis/6.68.2-GCCcore-12.2.0/easybuild/hypothesis-6.68.2-GCCcore-12.2.0.eb:
19+
options:
20+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/hypothesis/6.68.2-GCCcore-12.2.0/easybuild/reprod/easyblocks/*.py
21+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/gfbf/2022b/easybuild/gfbf-2022b.eb:
22+
options:
23+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/gfbf/2022b/easybuild/reprod/easyblocks/*.py
24+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Eigen/3.4.0-GCCcore-12.2.0/easybuild/Eigen-3.4.0-GCCcore-12.2.0.eb:
25+
options:
26+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Eigen/3.4.0-GCCcore-12.2.0/easybuild/reprod/easyblocks/*.py
27+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Catch2/2.13.9-GCCcore-12.2.0/easybuild/Catch2-2.13.9-GCCcore-12.2.0.eb:
28+
options:
29+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Catch2/2.13.9-GCCcore-12.2.0/easybuild/reprod/easyblocks/*.py
30+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/pybind11/2.10.3-GCCcore-12.2.0/easybuild/pybind11-2.10.3-GCCcore-12.2.0.eb:
31+
options:
32+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/pybind11/2.10.3-GCCcore-12.2.0/easybuild/reprod/easyblocks/*.py
33+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/SciPy-bundle/2023.02-gfbf-2022b/easybuild/SciPy-bundle-2023.02-gfbf-2022b.eb:
34+
options:
35+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/SciPy-bundle/2023.02-gfbf-2022b/easybuild/reprod/easyblocks/*.py
36+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Bison/3.8.2-GCCcore-13.2.0/easybuild/Bison-3.8.2-GCCcore-13.2.0.eb:
37+
options:
38+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Bison/3.8.2-GCCcore-13.2.0/easybuild/reprod/easyblocks/*.py
39+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Szip/2.1.1-GCCcore-13.2.0/easybuild/Szip-2.1.1-GCCcore-13.2.0.eb:
40+
options:
41+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Szip/2.1.1-GCCcore-13.2.0/easybuild/reprod/easyblocks/*.py
42+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/libiconv/1.17-GCCcore-13.2.0/easybuild/libiconv-1.17-GCCcore-13.2.0.eb:
43+
options:
44+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/libiconv/1.17-GCCcore-13.2.0/easybuild/reprod/easyblocks/*.py
45+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Doxygen/1.9.8-GCCcore-13.2.0/easybuild/Doxygen-1.9.8-GCCcore-13.2.0.eb:
46+
options:
47+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Doxygen/1.9.8-GCCcore-13.2.0/easybuild/reprod/easyblocks/*.py
48+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/HDF5/1.14.3-gompi-2023b/easybuild/HDF5-1.14.3-gompi-2023b.eb:
49+
options:
50+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/HDF5/1.14.3-gompi-2023b/easybuild/reprod/easyblocks/*.py
51+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/gzip/1.13-GCCcore-13.2.0/easybuild/gzip-1.13-GCCcore-13.2.0.eb:
52+
options:
53+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/gzip/1.13-GCCcore-13.2.0/easybuild/reprod/easyblocks/*.py
54+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/lz4/1.9.4-GCCcore-13.2.0/easybuild/lz4-1.9.4-GCCcore-13.2.0.eb:
55+
options:
56+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/lz4/1.9.4-GCCcore-13.2.0/easybuild/reprod/easyblocks/*.py
57+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/zstd/1.5.5-GCCcore-13.2.0/easybuild/zstd-1.5.5-GCCcore-13.2.0.eb:
58+
options:
59+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/zstd/1.5.5-GCCcore-13.2.0/easybuild/reprod/easyblocks/*.py
60+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/netCDF/4.9.2-gompi-2023b/easybuild/netCDF-4.9.2-gompi-2023b.eb:
61+
options:
62+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/netCDF/4.9.2-gompi-2023b/easybuild/reprod/easyblocks/*.py
63+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Boost.MPI/1.82.0-gompi-2023a/easybuild/Boost.MPI-1.82.0-gompi-2023a.eb:
64+
options:
65+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Boost.MPI/1.82.0-gompi-2023a/easybuild/reprod/easyblocks/*.py
66+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/GSL/2.7-GCC-12.3.0/easybuild/GSL-2.7-GCC-12.3.0.eb:
67+
options:
68+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/GSL/2.7-GCC-12.3.0/easybuild/reprod/easyblocks/*.py
69+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/typing-extensions/4.9.0-GCCcore-12.3.0/easybuild/typing-extensions-4.9.0-GCCcore-12.3.0.eb:
70+
options:
71+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/typing-extensions/4.9.0-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
72+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/OpenPGM/5.2.122-GCCcore-12.3.0/easybuild/OpenPGM-5.2.122-GCCcore-12.3.0.eb:
73+
options:
74+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/OpenPGM/5.2.122-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
75+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Pint/0.23-GCCcore-12.3.0/easybuild/Pint-0.23-GCCcore-12.3.0.eb:
76+
options:
77+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/Pint/0.23-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
78+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/BeautifulSoup/4.12.2-GCCcore-12.3.0/easybuild/BeautifulSoup-4.12.2-GCCcore-12.3.0.eb:
79+
options:
80+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/BeautifulSoup/4.12.2-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
81+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/libsodium/1.0.18-GCCcore-12.3.0/easybuild/libsodium-1.0.18-GCCcore-12.3.0.eb:
82+
options:
83+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/libsodium/1.0.18-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
84+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/libxslt/1.1.38-GCCcore-12.3.0/easybuild/libxslt-1.1.38-GCCcore-12.3.0.eb:
85+
options:
86+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/libxslt/1.1.38-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
87+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/ZeroMQ/4.3.4-GCCcore-12.3.0/easybuild/ZeroMQ-4.3.4-GCCcore-12.3.0.eb:
88+
options:
89+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/ZeroMQ/4.3.4-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
90+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/lxml/4.9.2-GCCcore-12.3.0/easybuild/lxml-4.9.2-GCCcore-12.3.0.eb:
91+
options:
92+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/lxml/4.9.2-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
93+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/IPython/8.14.0-GCCcore-12.3.0/easybuild/IPython-8.14.0-GCCcore-12.3.0.eb:
94+
options:
95+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/IPython/8.14.0-GCCcore-12.3.0/easybuild/reprod/easyblocks/*.py
96+
- /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/ESPResSo/4.2.1-foss-2023a/easybuild/ESPResSo-4.2.1-foss-2023a.eb:
97+
options:
98+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/ESPResSo/4.2.1-foss-2023a/easybuild/reprod/easyblocks/*.py
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
easyconfigs:
2+
- ReFrame-4.3.3.eb:
3+
options:
4+
# see https://github.com/easybuilders/easybuild-easyconfigs/pull/22183
5+
from-commit: e6289fb1c0982f7b7311039b7f4038756a950a5c
6+
include-easyblocks: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/ReFrame/4.3.3/easybuild/reprod/easyblocks/*.py

0 commit comments

Comments
 (0)