diff --git a/.github/workflows/regressiontest_container.yml b/.github/workflows/regressiontest_container.yml index fccfb8f26..73d3cf90f 100644 --- a/.github/workflows/regressiontest_container.yml +++ b/.github/workflows/regressiontest_container.yml @@ -27,16 +27,20 @@ jobs: # module avail # spack --version module load python - # which python3 + which python3 # python3 --version3 # cd $GITHUB_WORKSPACE # ls -la export HOMEDIR=`pwd` echo $HOMEDIR + echo "-------------" + ls -la $HOMEDIR + echo "-------------" + . setup.sh - export BUILDTEST_CONFIGFILE=$BUILDTEST_ROOT/buildtest/settings/spack_container.yml - python $BUILDTEST_ROOT/buildtest/tools/unittests.py -c + export BUILDTEST_CONFIGFILE=$HOMEDIR/buildtest/settings/spack_container.yml + python $HOMEDIR/buildtest/tools/unittests.py -c returncode=$? if [ $returncode != 0 ]; then exit $returncode; fi