-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
53 lines (51 loc) · 1.88 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
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
packages:
- g++-6
- clang-3.8
- llvm-dev
before_install:
- if [[ "$TRAVIS_OS_NAME" = "osx" ]]; then brew update && brew upgrade python3; fi
language: cpp
compiler:
- gcc
- clang
os:
- linux
- osx
osx_image: xcode8
script: ./.travis/build.sh
after_success: ./.travis/signature.sh
env:
matrix:
- build_type=debug static_libraries=FALSE
- build_type=release static_libraries=FALSE
- build_type=debug static_libraries=TRUE
- build_type=release static_libraries=TRUE
global:
secure: No/uhrPqPa23XVLGWiUTHmUYj2444hIg/mdGGVp99tptfod5ar+daiJGNnsw/3MiDztf6yaaqIoxSRE5j+u4v59GYdya/pwu5cNkENoVD5y01gayuWb28dIZIMOls7gGEYq46xGoD5uETPiiWve9E3zwqyqM3LmO0WOo2a0MXUW2bDe8NGRCk4Sy/7a7S1+1Y4J0ZqEcye3tpZqPHX6Kd9CVUmXUCncKBquV0ILFUX2XTOhQFrDYgpxdG3LT3NXxQJLgSkMcsH8q0WVaagofLoCOapOrUDNdJ8TswaPStEgp3KuIMFaMIl8F8M1pw/wPEslzwd79wS5WMkF4DChlwTdeCuKalRRtZ0uDSlgDIfRis4C4GLcLl9dY//x6cClyh458Lx60POEw8JVjcZAqYEDr3jZTUtgGhl/JiBYT7YsbjLb2WDFHLbRi7ZO3zuq+S6kaDekWk9T1C4qrcFg6lQ7Be0Mro0Zlal2Qf1l/IA59Q261G7xz0SQdh6vfYvQ+UXJAvtgd0rop3q5g/YYjfMAPPA1mU1Jqz4XWnVVsYSYGQzrGMzGUMb4mI9/lw3dvyGIKGwabRyNuE6J2/jtOXOARlVGEobyGpt8Ew3I7SGucTniy3jH1XB2m/b4glEgd9a8aRAr57oRYh0xOOPE/6Cjuhk2EB4wMpelaIu+wgdY=
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;-fno-omit-frame-pointer;"
exclude:
- os: osx
compiler: gcc