blob: 3817edf0c4cc1b7bb4e1862c3faebda23d442061 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env bash
ci_dir="$(dirname "$0")"
. "${ci_dir}/ci-common.sh"
VST_CI_DIR="${CI_BUILD_DIR}/VST"
# opam install -j ${NJOBS} -y menhir
git_checkout "${VST_CI_BRANCH}" "${VST_CI_GITURL}" "${VST_CI_DIR}"
# HACK: from the upstream makefile:
#
# default_target: _CoqProject version.vo msl veric floyd progs
#
# We have to omit progs as otherwise we timeout on Travis; once we
# move to Gitlab we will able to just use `make`
( cd "${VST_CI_DIR}" && make IGNORECOQVERSION=true _CoqProject version.vo msl veric floyd )
|