-
Notifications
You must be signed in to change notification settings - Fork 6
/
.travis.yml
38 lines (31 loc) · 1.98 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
31
32
33
34
35
36
37
38
language: generic
sudo: required
matrix:
fast_finish: true
include:
- dist: trusty
env: COQ_VERSION="trunk" COQ_PACKAGE="coq libcoq-ocaml-dev ocaml camlp5" PPA="ppa:jgross-h/coq-trunk-daily" TARGETS="src facade"
- dist: trusty
env: COQ_VERSION="v8.6" COQ_PACKAGE="coq libcoq-ocaml-dev ocaml camlp5" PPA="ppa:jgross-h/coq-8.6-daily" TARGETS="src facade"
- dist: trusty
env: COQ_VERSION="v8.5" COQ_PACKAGE="coq libcoq-ocaml-dev ocaml camlp5 ocaml-native-compilers" PPA="ppa:jgross-h/coq-8.5-daily" TARGETS="src"
- dist: trusty
env: COQ_VERSION="v8.5" COQ_PACKAGE="coq libcoq-ocaml-dev ocaml camlp5 ocaml-native-compilers" PPA="ppa:jgross-h/coq-8.5-daily" TARGETS="facade"
- dist: trusty
env: COQ_VERSION="8.6" COQ_PACKAGE="coq-8.6 libcoq-8.6-ocaml-dev ocaml camlp5" PPA="ppa:jgross-h/many-coq-versions" TARGETS="src facade"
- dist: trusty
env: COQ_VERSION="8.5pl3" COQ_PACKAGE="coq-8.5pl3 libcoq-8.5pl3-ocaml libcoq-8.5pl3-ocaml-dev ocaml camlp5" PPA="ppa:jgross-h/many-coq-versions" TARGETS="src"
- dist: trusty
env: COQ_VERSION="8.5pl3" COQ_PACKAGE="coq-8.5pl3 libcoq-8.5pl3-ocaml libcoq-8.5pl3-ocaml-dev ocaml camlp5" PPA="ppa:jgross-h/many-coq-versions" TARGETS="facade"
- dist: precise
env: COQ_VERSION="8.4pl6" COQ_PACKAGE="coq-8.4pl6 libcoq-ocaml-8.4pl6 libcoq-ocaml-dev-8.4pl6 ocaml camlp5" PPA="ppa:jgross-h/many-coq-versions-ocaml-3" TARGETS="src facade"
before_install:
- if [ ! -z "$PPA" ]; then sudo add-apt-repository "$PPA" -y; fi
- sudo apt-get update -q
- sudo apt-get install $COQ_PACKAGE -y
before_script:
- uname -a
- source ./etc/ci/travis_keep_alive.sh
script: ./etc/coq-scripts/timing/make-pretty-timed.sh $TARGETS TIMED=1 -j2 && make $TARGETS TIMED=1 -j2
after_success:
- kill $PID_KEEP_ALIVE