aboutsummaryrefslogtreecommitdiff
path: root/dev/ci
diff options
context:
space:
mode:
authorJason Gross2020-09-21 12:38:25 -0400
committerJason Gross2020-09-21 12:42:14 -0400
commitfef5b75e72e1dc2889875616f56332a00dc50534 (patch)
tree09eb1524b44597aa8f9a3cf6ee0033702484d863 /dev/ci
parent84d5475169ec0ba3d11928dab11eba6bc3d19d9b (diff)
Make print-pretty-timed robust against non-output-sync logs
Also pass `--output-sync` on the CI, as suggested in https://github.com/coq/coq/pull/12653#issuecomment-696226093, to protect against this failure mode. Fixes #13062
Diffstat (limited to 'dev/ci')
-rw-r--r--dev/ci/ci-common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ci/ci-common.sh b/dev/ci/ci-common.sh
index c01bc57f72..f9187d53a6 100644
--- a/dev/ci/ci-common.sh
+++ b/dev/ci/ci-common.sh
@@ -97,9 +97,9 @@ make()
if [ -z "${MAKEFLAGS+x}" ] && [ -n "${NJOBS}" ];
then
# Not submake and parallel make requested
- command make -j "$NJOBS" "$@"
+ command make --output-sync -j "$NJOBS" "$@"
else
- command make "$@"
+ command make --output-sync "$@"
fi
}