aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-metacoq.sh
blob: 9a9bd3648b0a34e3f2bd78104098e50df2ff189e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# $0 is not the safest way, but...
ci_dir="$(dirname "$0")"
source ${ci_dir}/ci-common.sh

# MetaCoq + UniCoq

git clone --depth 1 https://github.com/unicoq/unicoq.git

( cd unicoq && coq_makefile -f Make -o Makefile && make -j ${NJOBS} && make install )

git clone --depth 1 https://github.com/MetaCoq/MetaCoq.git

( cd MetaCoq && coq_makefile -f _CoqProject -o Makefile && make -j ${NJOBS} )