blob: 59a85e4726184a737c3cfeb1f9e8f510fb2acb4d (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env bash
ci_dir="$(dirname "$0")"
. "${ci_dir}/ci-common.sh"
git_download compcert
( cd "${CI_BUILD_DIR}/compcert" && \
./configure -ignore-coq-version x86_32-linux && make && make check-proof )
|