Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion EESSI-pilot-install-software.sh
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ export GCC_EC="GCC-10.3.0.eb"
echo ">> Starting slow with ${GCC_EC}..."
ok_msg="${GCC_EC} installed, yippy! Off to a good start..."
fail_msg="Installation of ${GCC_EC} failed!"
$EB --robot GCCcore-10.3.0.eb
$EB --robot ${GCC_EC}
check_exit_code $? "${ok_msg}" "${fail_msg}"

# install Java 17
Expand Down
4 changes: 4 additions & 0 deletions check_missing_installations.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ fail_msg="On no, some installations are still missing, how did that happen?!"
eb_missing_out=$LOCAL_TMPDIR/eb_missing.out
# we need to use --from-pr to pull in some easyconfigs that are not available in EasyBuild version being used
# PR #16531: Nextflow-22.10.1.eb
# ${EB:-eb} --from-pr 16531 --easystack eessi-${EESSI_PILOT_VERSION}.yml --experimental --missing | tee ${eb_missing_out}
# PR 16531 not needed since we use EB v4.7.0
# this, however, breaks the GHA https://github.com/NorESSI/software-layer/blob/main/.github/workflows/test_eessi.yml
# because it uses the EESSI pilot which only provides EB 4.5.1, so adding it back
${EB:-eb} --from-pr 16531 --easystack eessi-${EESSI_PILOT_VERSION}.yml --experimental --missing | tee ${eb_missing_out}

# the above assesses the installed software for each easyconfig provided in
Expand Down
1 change: 0 additions & 1 deletion eessi-2022.11.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
easyconfigs:
- EasyBuild-4.6.2.eb
- EasyBuild-4.7.0.eb
- Java-11.eb
- Java-17.eb
- GCC-9.3.0.eb
Expand Down