diff options
| author | Jason Gross | 2020-09-21 12:38:25 -0400 |
|---|---|---|
| committer | Jason Gross | 2020-09-21 12:42:14 -0400 |
| commit | fef5b75e72e1dc2889875616f56332a00dc50534 (patch) | |
| tree | 09eb1524b44597aa8f9a3cf6ee0033702484d863 /dev | |
| parent | 84d5475169ec0ba3d11928dab11eba6bc3d19d9b (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')
| -rw-r--r-- | dev/ci/ci-common.sh | 4 |
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 } |
