aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-compcert.sh
blob: 0b0e06e29f784f4f1e69e91a0f84bcd97a80808a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash

ci_dir="$(dirname "$0")"
. "${ci_dir}/ci-common.sh"

CompCert_CI_DIR="${CI_BUILD_DIR}/CompCert"

# Temporal workaround, to be removed when upstream decides what to do
# with their problem.
opam install -y menhir.20180528

git_checkout "${CompCert_CI_BRANCH}" "${CompCert_CI_GITURL}" "${CompCert_CI_DIR}"

( cd "${CompCert_CI_DIR}" && ./configure -ignore-coq-version x86_32-linux && make && make check-proof )