aboutsummaryrefslogtreecommitdiff
path: root/dev/ci/ci-compcert.sh
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2017-02-11 02:06:01 +0100
committerEmilio Jesus Gallego Arias2017-02-15 21:20:34 +0100
commit575bbed527977aee520a3954a196f5b59ae947c5 (patch)
tree5f3376bba323271eb139ca4b9f74c6b53293f145 /dev/ci/ci-compcert.sh
parent30a2def37ecdeeed24325089a0b0ca264100389c (diff)
[travis] [External CI] CompCert official 8.6 support + UniMath
Diffstat (limited to 'dev/ci/ci-compcert.sh')
-rwxr-xr-xdev/ci/ci-compcert.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/dev/ci/ci-compcert.sh b/dev/ci/ci-compcert.sh
index d4d503278a..ec09389f8e 100755
--- a/dev/ci/ci-compcert.sh
+++ b/dev/ci/ci-compcert.sh
@@ -3,8 +3,11 @@
ci_dir="$(dirname "$0")"
source ${ci_dir}/ci-common.sh
+CompCert_CI_BRANCH=master
+CompCert_CI_GITURL=https://github.com/AbsInt/CompCert.git
+
opam install -j ${NJOBS} -y menhir
-git_checkout coq-8.6 https://github.com/maximedenes/CompCert.git CompCert
+git_checkout ${CompCert_CI_BRANCH} ${CompCert_CI_GITURL} CompCert
# Patch to avoid the upper version limit
( cd CompCert && sed -i.bak 's/8.6)/8.6|trunk)/' configure && ./configure x86_32-linux && make -j ${NJOBS} )