forked from doctest/doctest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
429 lines (367 loc) · 15.6 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
# this file is HEAVILY influenced by https://github.com/boostorg/hana/blob/master/.travis.yml
sudo: false
language: c++
notifications:
email: false
# gitter
webhooks:
urls: https://webhooks.gitter.im/e/10941dd1c67e5e967706
on_success: change
on_failure: always
git:
depth: 500
# both apt and ccache make the builds slower...
#cache:
# - apt
# - ccache
env:
global:
# - USE_CCACHE=1
# - CCACHE_SLOPPINESS=pch_defines,time_macros
# - CCACHE_COMPRESS=1
# - CCACHE_MAXSIZE=200M
# - CCACHE_CPP2=1
- CMAKE_OPTIONS_GLOBAL="-DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
# Workaround for https://github.com/travis-ci/travis-ci/issues/4681
# "Defining the build matrix only with matrix.include leads to an additional, unwanted job"
matrix:
- TRAVIS_EMPTY_JOB_WORKAROUND=true
addons:
coverity_scan:
# COVERITY_SCAN_TOKEN added as env var in travis project
project:
name: onqtam/doctest
notification_email: [email protected]
build_command_prepend: cd examples/hello_world && cmake .
build_command: make
branch_pattern: coverity_scan
# these apt sources will be referenced later (by using *name)
apt:
sources: &apt_sources
- ubuntu-toolchain-r-test
- llvm-toolchain-precise
- llvm-toolchain-precise-3.5
- llvm-toolchain-precise-3.6
- llvm-toolchain-precise-3.7
- llvm-toolchain-precise-3.8
- llvm-toolchain-precise-3.9
compiler: clang
os: linux
matrix:
exclude:
- env: TRAVIS_EMPTY_JOB_WORKAROUND=true
include:
# coverage
- env: COMPILER=g++ COVERALLS_SERVICE_NAME=travis-ci
compiler: gcc
addons:
apt:
packages: ["lcov", "curl"]
# GCC 4.4
- env: COMPILER=g++-4.4
compiler: gcc
addons: &gcc44
apt:
packages: ["g++-4.4", "valgrind", "g++-4.4-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# GCC 4.5
- env: COMPILER=g++-4.5
compiler: gcc
addons: &gcc45
apt:
packages: ["g++-4.5", "valgrind", "g++-4.5-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# GCC 4.6
- env: COMPILER=g++-4.6
compiler: gcc
addons: &gcc46
apt:
packages: [ "valgrind", "g++-4.6-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# GCC 4.7
- env: COMPILER=g++-4.7
compiler: gcc
addons: &gcc47
apt:
packages: ["g++-4.7", "valgrind", "g++-4.7-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# GCC 4.8
- env: COMPILER=g++-4.8 HAS_ASAN_32=true HAS_ASAN_64=true
compiler: gcc
addons: &gcc48
apt:
packages: ["g++-4.8", "valgrind", "g++-4.8-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# GCC 4.9
- env: COMPILER=g++-4.9 HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true # no ASAN_32 - errors when using ASAN_OPTIONS - probably g++ 4.9 bug
compiler: gcc
addons: &gcc49
apt:
packages: ["g++-4.9", "valgrind", "g++-4.9-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# GCC 5
- env: COMPILER=g++-5 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true ADDITIONAL_CXX_FLAGS=" -fuse-ld=gold"
compiler: gcc
addons: &gcc5
apt:
packages: ["g++-5", "valgrind", "g++-5-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# GCC 6
- env: COMPILER=g++-6 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true ADDITIONAL_CXX_FLAGS=" -fuse-ld=gold"
compiler: gcc
addons: &gcc6
apt:
packages: ["g++-6", "valgrind", "g++-6-multilib", "libc6-dbg", "libc6-dbg:i386"]
sources: *apt_sources
# Clang 3.4
- env: COMPILER=clang++ HAS_ASAN_64=true HAS_UBSAN_64=true
addons: &clang
apt:
packages: [ "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
sources: *apt_sources
# Clang 3.5
- env: COMPILER=clang++-3.5 HAS_ASAN_64=true HAS_UBSAN_64=true
addons: &clang35
apt:
packages: ["clang-3.5", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
sources: *apt_sources
# Clang 3.6
- env: COMPILER=clang++-3.6 HAS_ASAN_64=true HAS_UBSAN_64=true
addons: &clang36
apt:
packages: ["clang-3.6", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
sources: *apt_sources
# Clang 3.7
- env: COMPILER=clang++-3.7
addons: &clang37
apt:
packages: ["clang-3.7", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
sources: *apt_sources
# Clang 3.8
- env: COMPILER=clang++-3.8 HAS_ASAN_64=true HAS_UBSAN_64=true
addons: &clang38
apt:
packages: ["clang-3.8", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
sources: *apt_sources
# Clang 3.9
- env: COMPILER=clang++-3.9 HAS_ASAN_64=true HAS_UBSAN_64=true
addons: &clang39
apt:
packages: ["clang-3.9", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
sources: *apt_sources
# Xcode 6.4 Clang
- env: COMPILER=clang++
osx_image: xcode6.4
os: osx
# Xcode 7 Clang
- env: COMPILER=clang++ HAS_ASAN_32=true HAS_ASAN_64=true
osx_image: xcode7
os: osx
# Xcode 7.1 Clang
- env: COMPILER=clang++ HAS_ASAN_32=true HAS_ASAN_64=true
osx_image: xcode7.1
os: osx
# Xcode 7.2 Clang
- env: COMPILER=clang++ HAS_ASAN_32=true HAS_ASAN_64=true
osx_image: xcode7.2
os: osx
# Xcode 7.3 Clang
- env: COMPILER=clang++ HAS_ASAN_32=true HAS_ASAN_64=true
osx_image: xcode7.3
os: osx
# Xcode 8 Clang
- env: COMPILER=clang++ HAS_ASAN_32=true HAS_ASAN_64=true
osx_image: xcode8
os: osx
# Xcode 8.1 Clang
- env: COMPILER=clang++ HAS_ASAN_32=true HAS_ASAN_64=true
osx_image: xcode8.1
os: osx
# Xcode 8.2 Clang
- env: COMPILER=clang++ HAS_ASAN_32=true HAS_ASAN_64=true
osx_image: xcode8.2
os: osx
# OSX GCC 4.6
- env: COMPILER=g++-4.6
compiler: gcc
osx_image: beta-xcode6.3
os: osx
# OSX GCC 4.7
- env: COMPILER=g++-4.7
compiler: gcc
osx_image: beta-xcode6.3
os: osx
# OSX GCC 4.8
- env: COMPILER=g++-4.8 HAS_ASAN_32=true HAS_ASAN_64=true
compiler: gcc
osx_image: beta-xcode6.3
os: osx
# OSX GCC 4.9
- env: COMPILER=g++-4.9 HAS_UBSAN_32=true HAS_UBSAN_64=true # no ASAN_32/ASAN_64 - errors when using ASAN_OPTIONS - probably g++ 4.9 bug
compiler: gcc
osx_image: beta-xcode6.3
os: osx
# OSX GCC 5
- env: COMPILER=g++-5 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
compiler: gcc
osx_image: beta-xcode6.3
os: osx
# OSX GCC 6
- env: COMPILER=g++-6 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
compiler: gcc
osx_image: beta-xcode6.3
os: osx
# OSX LLVM-GCC
- env: COMPILER=g++
compiler: gcc
os: osx
allow_failures:
# for some reason some of these builds fail sometimes...
# OSX GCC 4.6
- env: COMPILER=g++-4.6
compiler: gcc
osx_image: beta-xcode6.3
os: osx
# OSX GCC 4.7
- env: COMPILER=g++-4.7
compiler: gcc
osx_image: beta-xcode6.3
os: osx
# OSX GCC 4.8
- env: COMPILER=g++-4.8 HAS_ASAN_32=true HAS_ASAN_64=true
compiler: gcc
osx_image: beta-xcode6.3
os: osx
# OSX GCC 4.9
- env: COMPILER=g++-4.9 HAS_UBSAN_32=true HAS_UBSAN_64=true # no ASAN_32/ASAN_64 - errors when using ASAN_OPTIONS - probably g++ 4.9 bug
compiler: gcc
osx_image: beta-xcode6.3
os: osx
# OSX GCC 5
- env: COMPILER=g++-5 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
compiler: gcc
osx_image: beta-xcode6.3
os: osx
# OSX GCC 6
- env: COMPILER=g++-6 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
compiler: gcc
osx_image: beta-xcode6.3
os: osx
before_install:
- git submodule update --init --recursive
install:
############################################################################
# All the dependencies are installed in ${TRAVIS_BUILD_DIR}/deps/
############################################################################
- DEPS_DIR="${TRAVIS_BUILD_DIR}/deps"
- mkdir -p ${DEPS_DIR} && cd ${DEPS_DIR}
############################################################################
# Install a recent CMake
############################################################################
- |
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
CMAKE_URL="http://www.cmake.org/files/v3.5/cmake-3.5.2-Linux-x86_64.tar.gz"
mkdir cmake && travis_retry wget --no-check-certificate --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake
export PATH=${DEPS_DIR}/cmake/bin:${PATH}
fi
############################################################################
# Go back to ${TRAVIS_BUILD_DIR}
############################################################################
- cd ${TRAVIS_BUILD_DIR}
############################################################################
# Install stuff with homebrew under OSX
############################################################################
- |
if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
brew update
# brew install ccache
brew install valgrind
# cmake
if brew list -1 | grep -q "^cmake\$"; then
brew outdated cmake || brew upgrade cmake
else
brew install cmake
fi
# gcc
if [[ "${COMPILER}" = "g++-4.4" ]]; then
brew install gcc44
fi
if [[ "${COMPILER}" = "g++-4.5" ]]; then
brew install gcc45
fi
if [[ "${COMPILER}" = "g++-4.6" ]]; then
brew install gcc46
fi
if [[ "${COMPILER}" = "g++-4.7" ]]; then
brew install gcc47
fi
if [[ "${COMPILER}" = "g++-4.8" ]]; then
brew install gcc48
fi
if [[ "${COMPILER}" = "g++-4.9" ]]; then
brew install gcc49
fi
if [[ "${COMPILER}" = "g++-5" ]]; then
brew install gcc5
fi
if [[ "${COMPILER}" = "g++-6" ]]; then
brew install gcc6
fi
fi
- export CXX="${COMPILER}"
# - export CXX="ccache ${COMPILER}"
# - ccache -s
before_script:
- ${CXX} --version
script:
# coverage - do not continue with other build configurations after that
- |
if [[ "${COVERALLS_SERVICE_NAME}" = "travis-ci" ]]; then
cmake ${CMAKE_OPTIONS_GLOBAL} -DCMAKE_BUILD_TYPE=Debug .
make -k -j2 && make coveralls
exit
fi
# initial run with options
- cmake ${CMAKE_OPTIONS_GLOBAL} ${CMAKE_OPTIONS} -DCMAKE_CXX_COMPILER=${CXX} .
# debug x64
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -m64" .
- make clean && make -k -j2
# valgrind for 64bit under osx fails TOO
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then cmake -DTEST_MODE=VALGRIND . && ctest --output-on-failure ; fi
- cmake -DTEST_MODE=COMPARE . && ctest --output-on-failure
# release x64
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -m64" .
- make clean && make -k -j2
# valgrind for 64bit under osx fails TOO
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then cmake -DTEST_MODE=VALGRIND . && ctest --output-on-failure ; fi
- cmake -DTEST_MODE=COMPARE . && ctest --output-on-failure
# debug x86
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -m32" .
- make clean && make -k -j2
# valgrind for 32bit under osx fails
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then cmake -DTEST_MODE=VALGRIND . && ctest --output-on-failure ; fi
- cmake -DTEST_MODE=COMPARE . && ctest --output-on-failure
# release x86
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -m32" .
- make clean && make -k -j2
# valgrind for 32bit under osx fails
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then cmake -DTEST_MODE=VALGRIND . && ctest --output-on-failure ; fi
- cmake -DTEST_MODE=COMPARE . && ctest --output-on-failure
# sanitizers - again 32/64 bit Debug/Release configs through address/undefined sanitizers
- cmake -DTEST_MODE=NORMAL .
# on separate commands because when something fails I want to see which one exactly
# TODO: when this http://stackoverflow.com/questions/39081183 gets resolved - add these to ASAN as well: check_initialization_order=true:strict_init_order=true
- if [[ "${HAS_ASAN_64}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -g -fno-omit-frame-pointer -m64 -fsanitize=address" . && make clean && make -k -j2 && ASAN_OPTIONS=verbosity=2:strict_string_checks=true:detect_odr_violation=2:detect_stack_use_after_return=true ctest --output-on-failure ; fi
- if [[ "${HAS_ASAN_32}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -g -fno-omit-frame-pointer -m32 -fsanitize=address" . && make clean && make -k -j2 && ASAN_OPTIONS=verbosity=2:strict_string_checks=true:detect_odr_violation=2:detect_stack_use_after_return=true ctest --output-on-failure ; fi
- if [[ "${HAS_ASAN_64}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -g -fno-omit-frame-pointer -m64 -fsanitize=address" . && make clean && make -k -j2 && ASAN_OPTIONS=verbosity=2:strict_string_checks=true:detect_odr_violation=2:detect_stack_use_after_return=true ctest --output-on-failure ; fi
- if [[ "${HAS_ASAN_32}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -g -fno-omit-frame-pointer -m32 -fsanitize=address" . && make clean && make -k -j2 && ASAN_OPTIONS=verbosity=2:strict_string_checks=true:detect_odr_violation=2:detect_stack_use_after_return=true ctest --output-on-failure ; fi
- if [[ "${HAS_UBSAN_64}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -g -fno-omit-frame-pointer -m64 -fsanitize=undefined" . && make clean && make -k -j2 && UBSAN_OPTIONS=verbosity=2 ctest --output-on-failure ; fi
- if [[ "${HAS_UBSAN_32}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -g -fno-omit-frame-pointer -m32 -fsanitize=undefined" . && make clean && make -k -j2 && UBSAN_OPTIONS=verbosity=2 ctest --output-on-failure ; fi
- if [[ "${HAS_UBSAN_64}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -g -fno-omit-frame-pointer -m64 -fsanitize=undefined" . && make clean && make -k -j2 && UBSAN_OPTIONS=verbosity=2 ctest --output-on-failure ; fi
- if [[ "${HAS_UBSAN_32}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -g -fno-omit-frame-pointer -m32 -fsanitize=undefined" . && make clean && make -k -j2 && UBSAN_OPTIONS=verbosity=2 ctest --output-on-failure ; fi
# test c++0x mode for warnings
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -m64" -DWITH_CPP11=1 .
- make clean && make -k -j2
# - ccache -s
#after_script:
# - cat compile_commands.json