diff options
| author | Maxime Dénès | 2017-12-21 10:34:49 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2017-12-21 10:34:49 +0100 |
| commit | 2ded75b9b51aa9607cf2a123d6f8ae42a141e97a (patch) | |
| tree | 4fa380ed2022c565d1688f8bdbc424577f34f64d /dev/ci/ci-wrapper.sh | |
| parent | e2d1c676b23a335b4fb8a528c99dfca2b82a1a39 (diff) | |
| parent | cf04e49c5426da3ea684f8e545652803106af0c2 (diff) | |
Merge PR #6474: Fix CI with parallel make (messed up dependencies)
Diffstat (limited to 'dev/ci/ci-wrapper.sh')
| -rwxr-xr-x | dev/ci/ci-wrapper.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ci/ci-wrapper.sh b/dev/ci/ci-wrapper.sh index a21bf9f38c..12a70176c2 100755 --- a/dev/ci/ci-wrapper.sh +++ b/dev/ci/ci-wrapper.sh @@ -15,13 +15,13 @@ function travis_fold { CI_NAME="$1" CI_SCRIPT="ci-${CI_NAME}.sh" + DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" # assume this script is in dev/ci/, cd to the root Coq directory cd "${DIR}/../.." +export TIMED=1 "${DIR}/${CI_SCRIPT}" 2>&1 | tee time-of-build.log travis_fold 'start' 'coq.test.timing' && echo 'Aggregating timing log...' python ./tools/make-one-time-file.py time-of-build.log travis_fold 'end' 'coq.test.timing' - -touch "_build_ci/.ci-${CI_NAME}.done" |
