aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-metacoq.sh
blob: 91a33695b028142f829240d8aca8d5d1e71865a6 (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_checkout master https://github.com/unicoq/unicoq.git unicoq

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

git_checkout master https://github.com/MetaCoq/MetaCoq.git MetaCoq

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