Skip to content

Commit

Permalink
Go back to succeeding when the second make succeeds
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed Oct 18, 2022
1 parent 4a619d6 commit a477f10
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions etc/ci/github-actions-make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ 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
make "$@" ${OUTPUT_SYNC} TIMED=1 TIMING=1 VERBOSE=1 || exit $?
else
exit 1
fi
exit 1
fi

unameOut="$(uname -s)"
Expand Down

0 comments on commit a477f10

Please sign in to comment.