aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2017-02-07 15:58:02 +0100
committerEmilio Jesus Gallego Arias2017-02-07 17:33:57 +0100
commitfedf877e14ed75fd7156a97f5bd6dcdc9c6ffcef (patch)
treeab329661c977fcd2369f27bfdc9d47a5d0027ec3 /dev
parent2a59cdce8c142d451988709a3939b884c63993c9 (diff)
[travis] [External CI] [geocoq] don't build slow file
Unfortunately `Ch16_coordinates_with_functions.v` takes alone ~15 minutes which is too much for Travis. Pity, because it was a nice use case.
Diffstat (limited to 'dev')
-rwxr-xr-xdev/ci/ci-geocoq.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/dev/ci/ci-geocoq.sh b/dev/ci/ci-geocoq.sh
index 7b5811dc4a..589a826e02 100755
--- a/dev/ci/ci-geocoq.sh
+++ b/dev/ci/ci-geocoq.sh
@@ -9,4 +9,8 @@ GeoCoq_CI_GITURL=https://github.com/GeoCoq/GeoCoq.git
git clone --depth 1 -b ${GeoCoq_CI_BRANCH} ${GeoCoq_CI_GITURL}
-( cd GeoCoq && ./configure.sh && make -j ${NJOBS} )
+( cd GeoCoq && \
+ ./configure.sh && \
+ sed -i.bak '/Ch16_coordinates_with_functions\.v/d' Make && \
+ coq_makefile -f Make -o Makefile && \
+ make -j ${NJOBS} )