-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
30 lines (23 loc) · 1.14 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
language: c
sudo: required
dist: trusty
env: COQ_VERSION="8.7.1" COQ_PACKAGE="coq-8.7.1 libcoq-8.7.1-ocaml-dev" PPA="ppa:jgross-h/many-coq-versions"
before_install:
- sudo add-apt-repository "$PPA" -y
- sudo apt-get update -q
- sudo apt-get install camlp5 $COQ_PACKAGE -y
before_script:
- uname -a
- which coqc
- which coqtop
- coqc --version
- echo | coqtop
- git clone https://github.com/ppedrot/ltac2.git && (cd ltac2 && git checkout d0591d12344adeaff7f51dc56f38ebcda7ba7c7c)
- git clone https://github.com/unicoq/unicoq.git && (cd unicoq && git checkout fd5f41f32f5f7cb94de81d66a42dff18df7084a2)
- git clone https://github.com/Mtac2/Mtac2.git && (cd Mtac2 && git checkout 607689192296bc42d75bc933ab2229a6b347c73b)
- git clone https://github.com/Template-Coq/template-coq.git && (cd template-coq && git checkout d6f621d27e882f16cf555d78b3e587038951ea94)
- (cd ltac2 && make && sudo make install)
- (cd unicoq && coq_makefile -f Make -o Makefile && make && sudo make install)
- (cd Mtac2 && coq_makefile -f _CoqProject -o Makefile && make && sudo make install)
- (cd template-coq && make && sudo make install)
script: make -j2