Skip to content

Commit 5b1975b

Browse files
authored
Merge pull request #618 from trz42/multiple_cvmfs_repos_eessi_container
support for multiple CVMFS repositories in `eessi_container.sh`
2 parents 2956c1a + 0e2fa22 commit 5b1975b

File tree

2 files changed

+280
-129
lines changed

2 files changed

+280
-129
lines changed

.github/workflows/test_eessi_container_script.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ jobs:
4545
elif [[ ${{matrix.SCRIPT_TEST}} == 'listrepos_default' ]]; then
4646
outfile=out_listrepos.txt
4747
./eessi_container.sh --verbose --list-repos | tee ${outfile}
48-
grep "EESSI" ${outfile}
48+
# make sure that the default EESSI software repository is available
49+
grep "software.eessi.io" ${outfile}
4950
5051
# test use of --list-repos with custom repos.cfg
5152
elif [[ ${{matrix.SCRIPT_TEST}} == 'listrepos_custom' ]]; then
@@ -57,11 +58,12 @@ jobs:
5758
echo "[EESSI/20HT.TP]" >> cfg/repos.cfg
5859
echo "repo_version = 20HT.TP" >> cfg/repos.cfg
5960
./eessi_container.sh --verbose --list-repos | tee ${outfile}
60-
grep "EESSI" ${outfile}
61+
# make sure that the default EESSI software repository is available
62+
grep "software.eessi.io" ${outfile}
6163
6264
export EESSI_REPOS_CFG_DIR_OVERRIDE=${PWD}/cfg
6365
./eessi_container.sh --verbose --list-repos | tee ${outfile2}
64-
grep "[EESSI/2023.02]" ${outfile2}
66+
grep "EESSI/20AB.CD" ${outfile2}
6567
6668
# test use of --mode run
6769
elif [[ ${{matrix.SCRIPT_TEST}} == 'run' ]]; then

0 commit comments

Comments
 (0)