aboutsummaryrefslogtreecommitdiff
path: root/dev/ci/ci-wrapper.sh
diff options
context:
space:
mode:
authorVincent Laporte2019-01-29 08:55:20 +0000
committerVincent Laporte2019-01-29 08:55:20 +0000
commit1f3536e89b7235aaa0007e8ab7298040407df8ba (patch)
tree81917018e39ecd4750ba8d0e77c01dd3fc678281 /dev/ci/ci-wrapper.sh
parent10253b1e744e8075b708a9fe328f49c06bbc3fef (diff)
parent95d977bf0b1825b7d822abbdd062cdb8c38051cb (diff)
Merge PR #9383: Remove travis
Reviewed-by: Zimmi48 Reviewed-by: vbgl
Diffstat (limited to 'dev/ci/ci-wrapper.sh')
-rwxr-xr-xdev/ci/ci-wrapper.sh10
1 files changed, 1 insertions, 9 deletions
diff --git a/dev/ci/ci-wrapper.sh b/dev/ci/ci-wrapper.sh
index 12a70176c2..9ca8f76054 100755
--- a/dev/ci/ci-wrapper.sh
+++ b/dev/ci/ci-wrapper.sh
@@ -6,13 +6,6 @@
set -eo pipefail
-function travis_fold {
- if [ -n "${TRAVIS}" ];
- then
- echo "travis_fold:$1:$2"
- fi
-}
-
CI_NAME="$1"
CI_SCRIPT="ci-${CI_NAME}.sh"
@@ -22,6 +15,5 @@ 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...'
+echo 'Aggregating timing log...'
python ./tools/make-one-time-file.py time-of-build.log
-travis_fold 'end' 'coq.test.timing'