-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
74 lines (62 loc) · 1.34 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#If we can do this without sudo, the VM boots up faster
sudo: false
os: linux
dist: trusty
#setting it to C seems to keep it from doing extra work
language: c
notifications:
slack:
rooms:
- uw-cse:NtqlntTgcEYOs5LRTK9zhSoJ#oeuf
on_success: always
on_failure: always
email: false
# uncomment and rebuild if cache gets corrupted
addons:
apt :
sources:
- sourceline : 'ppa:avsm/ppa'
packages :
- opam
before_install:
- echo "before_install"
- export PATH="$HOME/.cache/bin:$PATH"
- export PATH="$HOME/.opam/4.02.3/bin:$PATH"
- ocaml -version || true
- coqc --version || true
install:
- echo "install step"
- ./scripts/install_ocaml.sh
- ./scripts/install_coq85.sh
- pushd ..
- ./oeuf/scripts/build_struct_tact.sh
- ./oeuf/scripts/build_pretty_parsing.sh
- popd
- pushd compcert
- ./configure ia32-linux
- make proof -j2
- popd
before_script:
- echo "before_script"
script:
- pwd
- ls
- which coqc
- coqc --version
- ./configure
- make plugin
- make proof -j2
before_cache:
- echo "before_cache"
cache:
apt: true
directories:
- $HOME/.cache/lib
- $HOME/.cache/bin
- $HOME/.cache/coq
- $HOME/.opam
- $HOME/build/uwplse/oeuf/compcert
after_success:
- echo "after_success"
after_script:
- echo "after_script"