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 f0ef34e commit e7dba90Copy full SHA for e7dba90
.github/workflows/bootstrap_script.yml
@@ -127,7 +127,11 @@ jobs:
127
# test bootstrap script
128
export PREFIX=/tmp/$USER/$GITHUB_SHA/eb_bootstrap
129
export EASYBUILD_BOOTSTRAP_DEPRECATED=1
130
- python easybuild/scripts/bootstrap_eb.py $PREFIX
+ if ! python easybuild/scripts/bootstrap_eb.py $PREFIX; then
131
+ # Output log file of stage 2 install then fail
132
+ cat /tmp/eb-*/easybuild-EasyBuild-*.log
133
+ false
134
+ fi
135
unset EASYBUILD_BOOTSTRAP_DEPRECATED
136
# unset $PYTHONPATH to avoid mixing two EasyBuild 'installations' when testing bootstrapped EasyBuild module
137
unset PYTHONPATH
0 commit comments