You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/tests_scripts.yml
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ jobs:
41
41
- name: install Apptainer
42
42
run: |
43
43
./install_apptainer_ubuntu.sh
44
-
44
+
45
45
- name: test load_easybuild_module.sh script
46
46
run: |
47
47
# bind current directory into container as /software-layer-scripts
@@ -139,3 +139,16 @@ jobs:
139
139
for pattern in "^Site Pkg location.*/software-layer-scripts/.lmod/SitePackage.lua" "LMOD_SITEPACKAGE_LOCATION.*/software-layer-scripts/.lmod/SitePackage.lua"; do
140
140
grep "${pattern}" ${out} || (echo "Pattern '${pattern}' not found in output!" && exit 1)
141
141
done
142
+
143
+
- name: Mount EESSI CernVM-FS repository
144
+
uses: eessi/github-action-eessi@v3
145
+
with:
146
+
eessi_stack_version: ${{matrix.EESSI_VERSION}}
147
+
use_eessi_module: true
148
+
149
+
- name: Verify that mounted repositories are passed through directly
150
+
run: |
151
+
# run wrapper script + capture & check output
152
+
out="${PWD}/eb-${EB_VERSION}.out"
153
+
./eessi_container.sh --access rw --mode run --verbose /software-layer-scripts/run_in_compat_layer_env.sh ls 2>&1 | tee ${out}
154
+
grep "SINGULARITY_BIND" ${out} | grep "software.eessi.io" || (echo "software.eessi.io did not seem to be bind mounted!" && exit 1)
0 commit comments