forked from mit-plv/riscv-coq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
26 lines (19 loc) · 788 Bytes
/
.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
language: c
sudo: required
dist: trusty
before_install:
- if [ ! -z "$PPA" ]; then sudo add-apt-repository "$PPA" -y; fi
- travis_retry ./etc/ci/sudo-apt-get-update.sh -q
- travis_retry sudo apt-get install $COQ_PACKAGE -y --allow-unauthenticated
before_script:
- uname -a
- coqc --version
- echo | coqtop
env:
- COQ_VERSION="master" COQ_PACKAGE="coq" PPA="ppa:jgross-h/coq-master-daily"
- COQ_VERSION="v8.12" COQ_PACKAGE="coq" PPA="ppa:jgross-h/coq-8.12-daily"
- COQ_VERSION="v8.11" COQ_PACKAGE="coq" PPA="ppa:jgross-h/coq-8.11-daily"
script:
- (cd .. && git clone https://github.com/mit-plv/coqutil.git && make -C coqutil)
- (cd .. && git clone https://github.com/tchajed/coq-record-update.git && make -C coq-record-update)
- make all