Skip to content

Commit

Permalink
Remove --output-sync from build log when make fails
Browse files Browse the repository at this point in the history
This should make it a bit easier to debug cases like #2009 (comment)
  • Loading branch information
JasonGross authored Jan 31, 2025
1 parent dd6d684 commit cf02ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/ci/github-actions-make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ cat time-of-build-pretty.log
if [ ! -f finished.ok ]; then
# see https://stackoverflow.com/a/15394738/377022 for more alternatives
if [[ ! " $* " =~ " validate " ]]; then
make "$@" ${OUTPUT_SYNC} TIMED=1 TIMING=1 VERBOSE=1 || exit $?
make "$@" TIMED=1 TIMING=1 VERBOSE=1 || exit $?
else
exit 1
fi
Expand Down

0 comments on commit cf02ec4

Please sign in to comment.