blob: ce870e52b5f9804391edc105b9fe928e9b27278f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
ci_dir="$(dirname "$0")"
source ${ci_dir}/ci-common.sh
# XXX: replace by generic template
GeoCoq_CI_BRANCH=master
GeoCoq_CI_GITURL=https://github.com/GeoCoq/GeoCoq.git
git_checkout ${GeoCoq_CI_BRANCH} ${GeoCoq_CI_GITURL} GeoCoq
( cd GeoCoq && \
./configure.sh && \
sed -i.bak '/Ch16_coordinates_with_functions\.v/d' Make && \
coq_makefile -f Make -o Makefile && \
make -j ${NJOBS} )
|