Skip to content

Commit

Permalink
add a bit debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
truib committed Oct 12, 2023
1 parent 2c5cf92 commit c8e53ce
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pr_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,13 @@ jobs:
env | grep ^EESSI | sort
source configure_easybuild
EB_MISSING_OUT=eb_missing.out
eb --missing --easystack ${{matrix.EASYSTACK_FILE}} > ${EB_MISSING_OUT}
echo "eb start"
eb --missing --easystack ${{matrix.EASYSTACK_FILE}} > ${EB_MISSING_OUT} || true
echo "eb done"
echo "grep start"
grep '.* out of .* required modules missing:' ${EB_MISSING_OUT}
exit_code=$?
echo "grep done"
if [[ ${exit_code} -eq 0 ]]; then
# there may be multiple sections with the above search string
# we grab all lines listing missing modules and print a list of
Expand Down

0 comments on commit c8e53ce

Please sign in to comment.