aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-hott.sh
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-06-26 12:17:53 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-07-21 03:36:47 -0400
commit8a5d161099900945df98c56fd7fffa30fca9fb44 (patch)
treec6bc7553bded0a3d93a5df16e25b5b40b33544cb /dev/ci/ci-hott.sh
parent987655c3bc8a8ebd60856356f465b3c34eb4e252 (diff)
Alternate way of doing timing on ci
This puts the boilerplate all in one place
Diffstat (limited to 'dev/ci/ci-hott.sh')
-rwxr-xr-xdev/ci/ci-hott.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/dev/ci/ci-hott.sh b/dev/ci/ci-hott.sh
index c90555853..1bf6e9a87 100755
--- a/dev/ci/ci-hott.sh
+++ b/dev/ci/ci-hott.sh
@@ -6,6 +6,5 @@ source ${ci_dir}/ci-common.sh
HoTT_CI_DIR=${CI_BUILD_DIR}/HoTT
git_checkout ${HoTT_CI_BRANCH} ${HoTT_CI_GITURL} ${HoTT_CI_DIR}
-( cd ${HoTT_CI_DIR} && git submodule update --init --recursive )
-( cd ${HoTT_CI_DIR} && ./autogen.sh && ./configure && (make TIMED=1 | tee time-of-build.log; exit ${PIPESTATUS[0]}) && python ./etc/coq-scripts/timing/make-one-time-file.py time-of-build.log time-of-build-pretty.log && cat time-of-build-pretty.log )
+( cd ${HoTT_CI_DIR} && ./autogen.sh && ./configure && make -j ${NJOBS} )