aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
authorGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2018-05-03 13:13:27 +0200
committerGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2018-05-03 13:13:27 +0200
commitfad6eee8ddb28fa7840044c65aa02557285e23f0 (patch)
tree3bb36e9ad36be68ff6242b1cc1071b89333f227c /dev
parent7375835645c98ff3df5a083642c035c7ae72d453 (diff)
parenta4ac6f904216ac28e70d9c0d03bff45960ba41a1 (diff)
Merge PR #7400: ci-vst.sh: use -o progs
Diffstat (limited to 'dev')
-rwxr-xr-xdev/ci/ci-vst.sh10
1 files changed, 3 insertions, 7 deletions
diff --git a/dev/ci/ci-vst.sh b/dev/ci/ci-vst.sh
index 3817edf0c..79001c547 100755
--- a/dev/ci/ci-vst.sh
+++ b/dev/ci/ci-vst.sh
@@ -8,10 +8,6 @@ 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 )
+# We have to omit progs as otherwise we timeout on Travis; on Gitlab
+# we will be able to just use `make`
+( cd "${VST_CI_DIR}" && make IGNORECOQVERSION=true -o progs )