-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
56 lines (47 loc) · 1.17 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
sudo: required
git:
submodules: false
addons:
apt:
sources:
- sourceline: "deb http://apt.llvm.org/precise/ llvm-toolchain-precise-3.8 main"
key_url : "http://apt.llvm.org/llvm-snapshot.gpg.key"
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-6
- clang-3.8
- llvm-dev
language: cpp
compiler:
- gcc
- clang
os:
- linux
- osx
osx_image: xcode8
script: ./.travis/build.sh
after_success: ./.travis/signature.sh
env:
- build_type=debug static_libraries=FALSE
- build_type=release static_libraries=FALSE
- build_type=debug static_libraries=TRUE
- build_type=release static_libraries=TRUE
matrix:
include:
- os: linux
compiler: gcc
env: build_type=coverage static_libraries=FALSE
- os: linux
compiler: clang
env:
build_type=debug static_libraries=FALSE
appended_flags="-fsanitize=address;-fno-omit-frame-pointer"
- os: linux
compiler: clang
env:
build_type=debug static_libraries=FALSE
appended_flags="-fsanitize=undefined;-fsanitize=integer;-fno-omit-frame-pointer"
exclude:
- os: osx
compiler: gcc