forked from esbmc/esbmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
115 lines (103 loc) · 2.21 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# https://travis-ci.org
language: cpp
branches:
only:
- master
os: linux
dist: bionic
addons:
apt:
packages:
- gperf
- libgmp-dev
- cmake
- bison
- flex
- ccache
- gcc-multilib
- linux-libc-dev
- libboost-all-dev
- ninja-build
- python3-setuptools
- lcov
homebrew:
packages:
- gmp
- cmake
- boost
- ninja
- automake
# https://docs.travis-ci.com/user/caching/#things-not-to-cache
cache:
apt: true
ccache: true
directories:
- $HOME/Library/Caches/Homebrew
- $HOME/clcache
- $HOME/boolector
- $HOME/boolector-3.2.0
- $HOME/cvc4
- $HOME/cvc4-release
jobs:
include:
- os: linux
compiler: "gcc"
env: ENABLE_COVERAGE=1
- os: linux
compiler: "clang"
- os: linux
compiler: "clang"
env: ENABLE_SANITIZER=1
SANITIZER="TSAN"
- os: linux
compiler: "clang"
env: ENABLE_SANITIZER=1
SANITIZER="ASAN"
- os: linux
compiler: "clang"
env: ENABLE_SANITIZER=1
SANITIZER="MSAN"
- os: linux
compiler: "clang"
env: ENABLE_SANITIZER=1
SANITIZER="LSAN"
- os: linux
compiler: "clang"
env: ENABLE_SANITIZER=1
SANITIZER="UBSAN"
- os: osx
osx_image: xcode10.2
compiler: "clang"
allow_failures:
# TODO: Identify, fix, and remove each build mode from failure
- os: osx
osx_image: xcode10.2
compiler: "clang"
- os: linux
compiler: "clang"
env: ENABLE_SANITIZER=1
SANITIZER="TSAN"
- os: linux
compiler: "clang"
env: ENABLE_SANITIZER=1
SANITIZER="ASAN"
- os: linux
compiler: "clang"
env: ENABLE_SANITIZER=1
SANITIZER="MSAN"
- os: linux
compiler: "clang"
env: ENABLE_SANITIZER=1
SANITIZER="LSAN"
- os: linux
compiler: "clang"
env: ENABLE_SANITIZER=1
SANITIZER="UBSAN"
before_install:
- travis_retry bash .travis.sh travis_before_install
install:
- travis_retry bash .travis.sh travis_install
script:
- bash .travis.sh travis_script
after_success:
- bash .travis.sh travis_after_success