We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc931c commit e22aafeCopy full SHA for e22aafe
.github/workflows/tests_eessi_module.yml
@@ -113,6 +113,13 @@ jobs:
113
env | grep -E '(^EESSI_|^LMOD_RC|^LMOD_PACKAGE_PATH)' | sort > "${moduleoutfile}"
114
module unload EESSI/${{matrix.EESSI_VERSION}}
115
116
+ # We should only have two EESSI_* variables defined (which set the overrides)
117
+ if [ "$(env | grep -c '^EESSI')" -ne 2 ]; then
118
+ echo "Expected 2 EESSI-related environment variables, but found a different number."
119
+ env | grep '^EESSI'
120
+ exit 1
121
+ fi
122
+
123
# Now do the init script initialisation
124
source ./init/bash
125
# source script version sets environment variables to force archdetect, ignore these
0 commit comments