Skip to content

Commit aa9895e

Browse files
committed
fix regex to find the custom EESSI version in the output of --list-repos
1 parent d8cf6a6 commit aa9895e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test_eessi_container_script.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,12 @@ jobs:
5858
echo "[EESSI/20HT.TP]" >> cfg/repos.cfg
5959
echo "repo_version = 20HT.TP" >> cfg/repos.cfg
6060
./eessi_container.sh --verbose --list-repos | tee ${outfile}
61-
grep "EESSI" ${outfile}
61+
# make sure that the default EESSI software repository is available
62+
grep "software.eessi.io" ${outfile}
6263
6364
export EESSI_REPOS_CFG_DIR_OVERRIDE=${PWD}/cfg
6465
./eessi_container.sh --verbose --list-repos | tee ${outfile2}
65-
grep "[EESSI/2023.02]" ${outfile2}
66+
grep "EESSI/20AB.CD" ${outfile2}
6667
6768
# test use of --mode run
6869
elif [[ ${{matrix.SCRIPT_TEST}} == 'run' ]]; then

0 commit comments

Comments
 (0)