diff options
| author | Maxime Dénès | 2017-03-06 15:03:02 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2017-03-06 15:03:02 +0100 |
| commit | 480082fe4a15dbd5d8ed2e9820a6329db10442bf (patch) | |
| tree | 5bade7440456b5a83e0d6dad6110104f81fb517d | |
| parent | 96046ed9804ed225d371dda37e978109756a98b6 (diff) | |
| parent | 4567e3a0a44a6c398375effa7d9a49342172512a (diff) | |
Merge PR#447: [travis] [External CI] fiat-parsers
| -rw-r--r-- | .travis.yml | 1 | ||||
| -rw-r--r-- | Makefile.ci | 2 | ||||
| -rwxr-xr-x | dev/ci/ci-fiat-parsers.sh | 12 |
3 files changed, 14 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index de16f2d0b4..5ed0809a52 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,6 +30,7 @@ env: - TEST_TARGET="ci-cpdt" - TEST_TARGET="ci-geocoq" - TEST_TARGET="ci-fiat-crypto" + - TEST_TARGET="ci-fiat-parsers" - TEST_TARGET="ci-flocq" - TEST_TARGET="ci-hott" - TEST_TARGET="ci-iris-coq" diff --git a/Makefile.ci b/Makefile.ci index e4b5832f60..897318c4dd 100644 --- a/Makefile.ci +++ b/Makefile.ci @@ -1,5 +1,5 @@ CI_TARGETS=ci-all ci-hott ci-math-comp ci-compcert ci-sf ci-cpdt \ - ci-color ci-math-classes ci-tlc ci-fiat-crypto \ + ci-color ci-math-classes ci-tlc ci-fiat-crypto ci-fiat-parsers \ ci-coquelicot ci-flocq ci-iris-coq ci-metacoq ci-geocoq \ ci-unimath diff --git a/dev/ci/ci-fiat-parsers.sh b/dev/ci/ci-fiat-parsers.sh new file mode 100755 index 0000000000..15d73078fd --- /dev/null +++ b/dev/ci/ci-fiat-parsers.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# $0 is not the safest way, but... +ci_dir="$(dirname "$0")" +source ${ci_dir}/ci-common.sh + +fiat_parsers_CI_BRANCH=master +fiat_parsers_CI_GITURL=https://github.com/mit-plv/fiat.git + +git_checkout ${fiat_parsers_CI_BRANCH} ${fiat_parsers_CI_GITURL} fiat + +( cd fiat && make -j ${NJOBS} parsers ) |
