-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
159 lines (139 loc) · 4.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
dist: trusty
sudo: false
group: travis_latest
language: c++
cache: ccache
env:
global:
- COMPILER=g++
addons:
apt:
sources: &apt_sources
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.5
- llvm-toolchain-precise-3.6
- llvm-toolchain-precise-3.7
- llvm-toolchain-precise-3.8
- llvm-toolchain-trusty-3.9
- llvm-toolchain-trusty-4.0
- llvm-toolchain-trusty-5.0
compiler: clang
os: linux
matrix:
fast_finish: true
include:
- env: COMPILER=g++-5
compiler: gcc
addons: &gcc5
apt:
packages: ["g++-5", "python3-pip", "lcov"]
sources: *apt_sources
- env: COMPILER=g++-6
compiler: gcc
addons: &gcc6
apt:
packages: ["g++-6", "python3-pip", "lcov"]
sources: *apt_sources
- env: COMPILER=g++-7
compiler: gcc
addons: &gcc7
apt:
packages: ["g++-7", "python3-pip", "lcov"]
sources: *apt_sources
- env: COMPILER=clang++-3.5
compiler: clang
addons: &clang35
apt:
packages: ["clang-3.5", "g++-7", "python3-pip", "lcov"]
sources: *apt_sources
- env: COMPILER=clang++-3.6
compiler: clang
addons: &clang36
apt:
packages: ["clang-3.6", "g++-7", "python3-pip", "lcov"]
sources: *apt_sources
- env: COMPILER=clang++-3.7
compiler: clang
addons: &clang37
apt:
packages: ["clang-3.7", "g++-7", "python3-pip", "lcov"]
sources: *apt_sources
- env: COMPILER=clang++-3.8
compiler: clang
addons: &clang38
apt:
packages: ["clang-3.8", "g++-7", "python3-pip", "lcov"]
sources: *apt_sources
- env: COMPILER=clang++-3.9
compiler: clang
addons: &clang39
apt:
packages: ["clang-3.9", "g++-7", "python3-pip", "lcov"]
sources: *apt_sources
- env: COMPILER=clang++-4.0
compiler: clang
addons: &clang40
apt:
packages: ["clang-4.0", "g++-7", "python3-pip", "lcov"]
sources: *apt_sources
- env: COMPILER=clang++-5.0
compiler: clang
addons: &clang50
apt:
packages: ["clang-5.0", "g++-7", "python3-pip", "lcov"]
sources: *apt_sources
allow_failures:
- env: COMPILER=clang++-3.7
compiler: clang
- env: COMPILER=clang++-3.9
compiler: clang
install:
- wget https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip && unzip -q ninja-linux.zip -d build-ninja
- wget https://github.com/danmar/cppcheck/releases/download/1.81/cppcheck-1.81.zip && unzip -q cppcheck-1.81.zip
- cd cppcheck-1.81/ && make SRCDIR=build CFGDIR=cfg CXXFLAGS="-O1 -DNDEBUG" -j2 && cd ..
- pip3 install --user meson
- pip3 install --user conan
- conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
- conan remote add rang https://api.bintray.com/conan/agauniyal/rang
- conan remote add nonstd-lite https://api.bintray.com/conan/agauniyal/nonstd-lite
- export PATH="`pwd`/build-ninja:${PATH}"
- export PATH="`pwd`/cppcheck-1.81/:${PATH}"
- export PATH="~/.local/bin:${PATH}"
before_script:
- export CXX=$COMPILER
- mkdir debug && cd debug
- conan install ..
- conan build ..
- ninja extract_data
- meson configure -Dbuildtype=debug
- meson configure -Dwarning_level=3
- if [[ "${COMPILER}" == clang++* ]]; then meson configure -Db_sanitize="address,undefined"; fi;
- meson configure -Db_coverage=true
- ninja
- cd ..
- mkdir release-sanitize && cd release-sanitize
- conan install ..
- conan build ..
- ninja extract_data
- meson configure -Dbuildtype=release
- meson configure -Dwarning_level=3
- if [[ "${COMPILER}" == clang* ]]; then meson configure -Db_sanitize="address,undefined"; fi;
- ninja
- cd ..
- mkdir release && cd release
- conan install ..
- conan build ..
- ninja extract_data
- meson configure -Dbuildtype=release
- meson configure -Dwarning_level=3
- ninja
- cd ..
script:
- cd release && ./test/mainTest && ./test/stressTest && ./test/bench && cd ..
- cd debug && ./test/mainTest && ./test/stressTest && ./test/bench && cd ..
- cd release-sanitize && ./test/mainTest && ./test/stressTest && ./test/bench && cd ..
- cd debug
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false