aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-wrapper.sh
diff options
context:
space:
mode:
authorGravatar Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net>2017-12-13 15:13:17 +0100
committerGravatar Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net>2017-12-13 15:13:17 +0100
commitf10d9fefdaf694253495c1ecf2e57ce5099b9375 (patch)
treefed120232e6e097e5c6ee073159b08a9f6645502 /dev/ci/ci-wrapper.sh
parentcef0430e14c370e6cbfe72db75e61cb4b8c8a8b9 (diff)
Put bignums, math-classes and corn dependencies in Makefile
Diffstat (limited to 'dev/ci/ci-wrapper.sh')
-rwxr-xr-xdev/ci/ci-wrapper.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/dev/ci/ci-wrapper.sh b/dev/ci/ci-wrapper.sh
index 96acc5a11..a21bf9f38 100755
--- a/dev/ci/ci-wrapper.sh
+++ b/dev/ci/ci-wrapper.sh
@@ -13,7 +13,8 @@ function travis_fold {
fi
}
-CI_SCRIPT="$1"
+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}/../.."
@@ -22,3 +23,5 @@ cd "${DIR}/../.."
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"