blob: a2384c9d15ab2b5953a8a481618a28a4480a4479 [file] [log] [blame]
onqtame85b1bb2016-06-26 16:41:09 +03001# this file is HEAVILY influenced by https://github.com/boostorg/hana/blob/master/.travis.yml
2
onqtam803bb8f2017-09-05 13:00:24 +03003dist: trusty
onqtame4c75fc2016-05-21 01:24:48 +03004sudo: false
5language: c++
6
7notifications:
onqtamf5169772016-09-09 18:33:13 +03008 email: false
onqtame4c75fc2016-05-21 01:24:48 +03009 # gitter
10 webhooks:
11 urls: https://webhooks.gitter.im/e/10941dd1c67e5e967706
12 on_success: change
13 on_failure: always
14git:
onqtam9f934f82016-08-02 12:42:19 +030015 depth: 500
onqtame4c75fc2016-05-21 01:24:48 +030016
17# both apt and ccache make the builds slower...
18#cache:
19# - apt
20# - ccache
21
22env:
23 global:
24# - USE_CCACHE=1
25# - CCACHE_SLOPPINESS=pch_defines,time_macros
26# - CCACHE_COMPRESS=1
27# - CCACHE_MAXSIZE=200M
28# - CCACHE_CPP2=1
29 - CMAKE_OPTIONS_GLOBAL="-DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
onqtame4c75fc2016-05-21 01:24:48 +030030
31addons:
32 coverity_scan:
33 # COVERITY_SCAN_TOKEN added as env var in travis project
34 project:
35 name: onqtam/doctest
36 notification_email: vik.kirilov@gmail.com
onqtam92a9ce12017-05-29 23:56:22 +030037 build_command: clang++ scripts/hello_world.cpp -I doctest
onqtame4c75fc2016-05-21 01:24:48 +030038 branch_pattern: coverity_scan
39 # these apt sources will be referenced later (by using *name)
40 apt:
onqtam2c8036f2016-06-26 17:12:42 +030041 sources: &apt_sources
42 - ubuntu-toolchain-r-test
onqtam3bf83c42017-04-23 15:30:23 +030043 - llvm-toolchain-trusty
onqtam803bb8f2017-09-05 13:00:24 +030044 - llvm-toolchain-trusty-3.9
onqtam3bf83c42017-04-23 15:30:23 +030045 - llvm-toolchain-trusty-4.0
onqtam803bb8f2017-09-05 13:00:24 +030046 - llvm-toolchain-trusty-5.0
onqtamcb279b22018-03-09 01:31:09 +070047 - llvm-toolchain-trusty-6.0
onqtame4c75fc2016-05-21 01:24:48 +030048
49compiler: clang
50os: linux
51
52matrix:
onqtame4c75fc2016-05-21 01:24:48 +030053 include:
onqtamd1737e42016-08-01 19:05:07 +030054 # coverage
onqtamf6d1a512017-05-01 13:56:12 +030055 - env: COMPILER=g++ CODE_COVERAGE=true
onqtamd1737e42016-08-01 19:05:07 +030056 compiler: gcc
57 addons:
58 apt:
onqtamf6d1a512017-05-01 13:56:12 +030059 packages: ["lcov"]
onqtamd1737e42016-08-01 19:05:07 +030060
onqtamaec53d22017-05-03 06:29:47 +030061 # static code analysis
onqtamba6808f2018-05-09 12:00:28 +030062 - env: COMPILER=clang++-5.0 STATIC_CODE_ANALYSIS=true
onqtamaec53d22017-05-03 06:29:47 +030063 addons: &clang40
64 apt:
onqtamba6808f2018-05-09 12:00:28 +030065 packages: ["clang-5.0", "clang-tidy-5.0", "cppcheck"]
onqtamaec53d22017-05-03 06:29:47 +030066 sources: *apt_sources
67
68 # GCC 4.4
69 - env: COMPILER=g++-4.4
70 compiler: gcc
71 addons: &gcc44
72 apt:
73 packages: ["g++-4.4", "valgrind", "g++-4.4-multilib", "libc6-dbg", "libc6-dbg:i386"]
74 sources: *apt_sources
75
onqtamaec53d22017-05-03 06:29:47 +030076 # GCC 4.6
77 - env: COMPILER=g++-4.6
78 compiler: gcc
79 addons: &gcc46
80 apt:
81 packages: [ "valgrind", "g++-4.6-multilib", "libc6-dbg", "libc6-dbg:i386"]
82 sources: *apt_sources
83
84 # GCC 4.7
85 - env: COMPILER=g++-4.7
86 compiler: gcc
87 addons: &gcc47
88 apt:
89 packages: ["g++-4.7", "valgrind", "g++-4.7-multilib", "libc6-dbg", "libc6-dbg:i386"]
90 sources: *apt_sources
91
92 # GCC 4.8
93 - env: COMPILER=g++-4.8 HAS_ASAN_32=true HAS_ASAN_64=true
94 compiler: gcc
95 addons: &gcc48
96 apt:
97 packages: ["g++-4.8", "valgrind", "g++-4.8-multilib", "libc6-dbg", "libc6-dbg:i386"]
98 sources: *apt_sources
99
100 # GCC 4.9
101 - 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
102 compiler: gcc
103 addons: &gcc49
104 apt:
105 packages: ["g++-4.9", "valgrind", "g++-4.9-multilib", "libc6-dbg", "libc6-dbg:i386"]
106 sources: *apt_sources
107
108 # GCC 5
109 - 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"
110 compiler: gcc
111 addons: &gcc5
112 apt:
113 packages: ["g++-5", "valgrind", "g++-5-multilib", "libc6-dbg", "libc6-dbg:i386"]
114 sources: *apt_sources
115
116 # GCC 6
117 - 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"
118 compiler: gcc
119 addons: &gcc6
120 apt:
121 packages: ["g++-6", "valgrind", "g++-6-multilib", "libc6-dbg", "libc6-dbg:i386"]
122 sources: *apt_sources
123
124 # GCC 7
125 - env: COMPILER=g++-7 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true ADDITIONAL_CXX_FLAGS=" -fuse-ld=gold"
126 compiler: gcc
onqtam051def32018-05-09 11:30:10 +0300127 sudo: required # see this issue for more details: https://github.com/travis-ci/travis-ci/issues/9033
onqtamaec53d22017-05-03 06:29:47 +0300128 addons: &gcc7
129 apt:
130 packages: ["g++-7", "valgrind", "g++-7-multilib", "libc6-dbg", "libc6-dbg:i386"]
131 sources: *apt_sources
132
onqtame5f8b672018-05-03 16:02:32 +0300133 # GCC 8
134 - env: COMPILER=g++-8 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true ADDITIONAL_CXX_FLAGS=" -fuse-ld=gold"
135 compiler: gcc
onqtam051def32018-05-09 11:30:10 +0300136 sudo: required # see this issue for more details: https://github.com/travis-ci/travis-ci/issues/9033
onqtame5f8b672018-05-03 16:02:32 +0300137 addons: &gcc8
138 apt:
139 packages: ["g++-8", "valgrind", "g++-8-multilib", "libc6-dbg", "libc6-dbg:i386"]
140 sources: *apt_sources
141
onqtamaec53d22017-05-03 06:29:47 +0300142 # Clang 3.5
143 - env: COMPILER=clang++-3.5 HAS_ASAN_64=true HAS_UBSAN_64=true
144 addons: &clang35
145 apt:
146 packages: ["clang-3.5", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
147 sources: *apt_sources
148
149 # Clang 3.6
150 - env: COMPILER=clang++-3.6 HAS_ASAN_64=true HAS_UBSAN_64=true
151 addons: &clang36
152 apt:
153 packages: ["clang-3.6", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
154 sources: *apt_sources
155
156 # Clang 3.7
157 - env: COMPILER=clang++-3.7
158 addons: &clang37
159 apt:
160 packages: ["clang-3.7", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
161 sources: *apt_sources
162
163 # Clang 3.8
164 - env: COMPILER=clang++-3.8 HAS_ASAN_64=true HAS_UBSAN_64=true
165 addons: &clang38
166 apt:
167 packages: ["clang-3.8", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
168 sources: *apt_sources
169
170 # Clang 3.9
171 - env: COMPILER=clang++-3.9 HAS_ASAN_64=true HAS_UBSAN_64=true
172 addons: &clang39
173 apt:
174 packages: ["clang-3.9", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
175 sources: *apt_sources
176
177 # Clang 4.0
178 - env: COMPILER=clang++-4.0 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
onqtam051def32018-05-09 11:30:10 +0300179 sudo: required # see this issue for more details: https://github.com/travis-ci/travis-ci/issues/9033
onqtamaec53d22017-05-03 06:29:47 +0300180 addons: &clang40
181 apt:
182 packages: ["clang-4.0", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
183 sources: *apt_sources
184
onqtam803bb8f2017-09-05 13:00:24 +0300185 # Clang 5.0
186 - env: COMPILER=clang++-5.0 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
onqtam051def32018-05-09 11:30:10 +0300187 sudo: required # see this issue for more details: https://github.com/travis-ci/travis-ci/issues/9033
onqtam803bb8f2017-09-05 13:00:24 +0300188 addons: &clang50
189 apt:
190 packages: ["clang-5.0", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
191 sources: *apt_sources
192
onqtamcb279b22018-03-09 01:31:09 +0700193 # Clang 6.0
onqtamba6808f2018-05-09 12:00:28 +0300194 - env: COMPILER=clang++-6.0 HAS_ASAN_64=true HAS_UBSAN_64=true
onqtam051def32018-05-09 11:30:10 +0300195 sudo: required # see this issue for more details: https://github.com/travis-ci/travis-ci/issues/9033
onqtamcb279b22018-03-09 01:31:09 +0700196 addons: &clang60
197 apt:
198 packages: ["clang-6.0", "valgrind", "g++-multilib", "libc6-dbg", "libc6-dbg:i386", "g++-6"]
199 sources: *apt_sources
200
onqtamaec53d22017-05-03 06:29:47 +0300201 # Xcode 6.4 Clang
202 - env: COMPILER=clang++
203 osx_image: xcode6.4
204 os: osx
205
206 # Xcode 7.3 Clang
207 - env: COMPILER=clang++ HAS_ASAN_32=true HAS_ASAN_64=true
208 osx_image: xcode7.3
209 os: osx
210
211 # Xcode 8 Clang
212 - env: COMPILER=clang++ HAS_ASAN_32=true HAS_ASAN_64=true
213 osx_image: xcode8
214 os: osx
215
onqtamaec53d22017-05-03 06:29:47 +0300216 # Xcode 8.3 Clang
217 - env: COMPILER=clang++ HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
218 osx_image: xcode8.3
219 os: osx
220
onqtam8603d872017-10-06 10:53:25 +0300221 # Xcode 9 Clang
222 - env: COMPILER=clang++ HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
223 osx_image: xcode9
224 os: osx
225
226 # Xcode 9.1 Clang
227 - env: COMPILER=clang++ HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
228 osx_image: xcode9.1
229 os: osx
230
onqtam50cbb802017-12-09 17:17:39 +0200231 # Xcode 9.2 Clang
232 - env: COMPILER=clang++ HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
233 osx_image: xcode9.2
234 os: osx
235
onqtam3a3bc202018-04-10 13:54:28 +0300236 # Xcode 9.3 Clang
237 - env: COMPILER=clang++ HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
238 osx_image: xcode9.3
239 os: osx
240
onqtamaec53d22017-05-03 06:29:47 +0300241 # OSX GCC 4.9
242 - 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
243 compiler: gcc
244 osx_image: xcode6.4
245 os: osx
246
247 # OSX GCC 5
248 - env: COMPILER=g++-5 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
249 compiler: gcc
250 osx_image: xcode7.3
251 os: osx
252
253 # OSX GCC 6
254 - env: COMPILER=g++-6 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
255 compiler: gcc
256 osx_image: xcode7.3
257 os: osx
258
259 # OSX GCC 7
260 - env: COMPILER=g++-7 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
261 compiler: gcc
262 osx_image: xcode7.3
263 os: osx
264
onqtamba6808f2018-05-09 12:00:28 +0300265 # OSX GCC 8
266 - env: COMPILER=g++-8 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
267 compiler: gcc
268 osx_image: xcode7.3
269 os: osx
270
onqtamaec53d22017-05-03 06:29:47 +0300271 # OSX LLVM-GCC
272 - env: COMPILER=g++ HAS_ASAN_32=true HAS_ASAN_64=true
273 compiler: gcc
274 os: osx
275
276 allow_failures:
277
onqtam803bb8f2017-09-05 13:00:24 +0300278 # Clang 3.7
279 - env: COMPILER=clang++-3.7
280
281 # Clang 3.9
282 - env: COMPILER=clang++-3.9 HAS_ASAN_64=true HAS_UBSAN_64=true
283
onqtamaec53d22017-05-03 06:29:47 +0300284 # OSX GCC 6
285 - env: COMPILER=g++-6 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
286 compiler: gcc
287 osx_image: xcode7.3
288 os: osx
289
onqtam803bb8f2017-09-05 13:00:24 +0300290 # OSX GCC 7
onqtamaec53d22017-05-03 06:29:47 +0300291 - env: COMPILER=g++-7 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
292 compiler: gcc
293 osx_image: xcode7.3
294 os: osx
onqtamb1a3de82016-10-10 22:22:00 +0300295
onqtamba6808f2018-05-09 12:00:28 +0300296 # OSX GCC 8
297 - env: COMPILER=g++-8 HAS_ASAN_32=true HAS_UBSAN_32=true HAS_ASAN_64=true HAS_UBSAN_64=true
298 compiler: gcc
299 osx_image: xcode7.3
300 os: osx
301
onqtam2c8036f2016-06-26 17:12:42 +0300302install:
onqtamf6d1a512017-05-01 13:56:12 +0300303 - if [[ "${CODE_COVERAGE}" == "true" ]]; then gem install coveralls-lcov ; fi
304
onqtam01158572016-06-28 14:29:32 +0300305 ############################################################################
onqtamc7aaa962016-09-10 02:16:57 +0300306 # All the dependencies are installed in ${TRAVIS_BUILD_DIR}/deps/
307 ############################################################################
308
onqtam5a2b2552017-05-01 14:03:04 +0300309 # Make a dir for all
onqtamc7aaa962016-09-10 02:16:57 +0300310 - DEPS_DIR="${TRAVIS_BUILD_DIR}/deps"
311 - mkdir -p ${DEPS_DIR} && cd ${DEPS_DIR}
312
onqtamc7aaa962016-09-10 02:16:57 +0300313 # Install a recent CMake
onqtamc7aaa962016-09-10 02:16:57 +0300314 - |
315 if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
onqtam84015352017-03-15 20:11:07 +0200316 CMAKE_URL="http://www.cmake.org/files/v3.7/cmake-3.7.2-Linux-x86_64.tar.gz"
onqtamc7aaa962016-09-10 02:16:57 +0300317 mkdir cmake && travis_retry wget --no-check-certificate --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake
318 export PATH=${DEPS_DIR}/cmake/bin:${PATH}
319 fi
320
onqtamebc7da32017-05-13 21:33:19 +0300321 # Install OCLint
322 - |
323 if [[ "${STATIC_CODE_ANALYSIS}" = "true" ]]; then
onqtamba6808f2018-05-09 12:00:28 +0300324 OCLINT_URL="https://github.com/oclint/oclint/releases/download/v0.13.1/oclint-0.13.1-x86_64-linux-4.4.0-112-generic.tar.gz"
onqtamebc7da32017-05-13 21:33:19 +0300325 mkdir oclint && travis_retry wget --no-check-certificate --quiet -O - ${OCLINT_URL} | tar --strip-components=1 -xz -C oclint
326 export PATH=${DEPS_DIR}/oclint/bin:${PATH}
327 fi
328
onqtamc7aaa962016-09-10 02:16:57 +0300329 # Go back to ${TRAVIS_BUILD_DIR}
onqtamc7aaa962016-09-10 02:16:57 +0300330 - cd ${TRAVIS_BUILD_DIR}
331
332 ############################################################################
onqtam01158572016-06-28 14:29:32 +0300333 # Install stuff with homebrew under OSX
334 ############################################################################
onqtamc7aaa962016-09-10 02:16:57 +0300335
onqtam23c6a342016-06-28 14:09:10 +0300336 - |
onqtame4c75fc2016-05-21 01:24:48 +0300337 if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
338 brew update
339 # brew install ccache
onqtam27a8c082017-04-04 17:42:41 +0300340 # brew install valgrind
onqtame4c75fc2016-05-21 01:24:48 +0300341 # cmake
342 if brew list -1 | grep -q "^cmake\$"; then
343 brew outdated cmake || brew upgrade cmake
344 else
345 brew install cmake
346 fi
347 # gcc
onqtame4c75fc2016-05-21 01:24:48 +0300348 if [[ "${COMPILER}" = "g++-4.9" ]]; then
349 brew install gcc49
350 fi
351 if [[ "${COMPILER}" = "g++-5" ]]; then
352 brew install gcc5
353 fi
354 if [[ "${COMPILER}" = "g++-6" ]]; then
355 brew install gcc6
356 fi
onqtamaab98c52017-05-02 19:48:42 +0300357 if [[ "${COMPILER}" = "g++-7" ]]; then
358 brew install gcc7
359 fi
onqtamba6808f2018-05-09 12:00:28 +0300360 if [[ "${COMPILER}" = "g++-8" ]]; then
361 brew install gcc8
362 fi
onqtame4c75fc2016-05-21 01:24:48 +0300363 fi
onqtamf6d1a512017-05-01 13:56:12 +0300364
onqtame4c75fc2016-05-21 01:24:48 +0300365 - export CXX="${COMPILER}"
onqtam9f934f82016-08-02 12:42:19 +0300366# - export CXX="ccache ${COMPILER}"
onqtame4c75fc2016-05-21 01:24:48 +0300367# - ccache -s
onqtam7dec6aa2016-06-26 16:01:15 +0300368
369before_script:
370 - ${CXX} --version
onqtame4c75fc2016-05-21 01:24:48 +0300371
372script:
onqtam81eab5e2017-05-08 11:51:20 +0300373 # coverage
onqtame4c75fc2016-05-21 01:24:48 +0300374 - |
onqtamf6d1a512017-05-01 13:56:12 +0300375 if [[ "${CODE_COVERAGE}" = "true" ]]; then
onqtam81eab5e2017-05-08 11:51:20 +0300376 cmake ${CMAKE_OPTIONS_GLOBAL} ${CMAKE_OPTIONS} -DCMAKE_CXX_COMPILER=${CXX} -DCMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage -std=c++98" -DCMAKE_BUILD_TYPE=Debug . || exit 1
377 make -k -j2 || exit 1
378 ctest --output-on-failure || exit 1
379
onqtamf6d1a512017-05-01 13:56:12 +0300380 lcov -d . -c -o coverage.info # parse coverage data
381 lcov -r coverage.info "/usr*" "$(readlink -f examples)/*" -o coverage.info # remove data for system headers and .cpp files
382 lcov -l coverage.info # just list a short summary of the results
onqtama6a866f2017-08-28 12:31:43 +0300383 coveralls-lcov --repo-token=${COVERALLS_REPO_TOKEN} coverage.info # upload results
onqtam5a2b2552017-05-01 14:03:04 +0300384
onqtam81eab5e2017-05-08 11:51:20 +0300385 # do not continue with other build configurations after that
onqtame4c75fc2016-05-21 01:24:48 +0300386 exit
387 fi
388
onqtam81eab5e2017-05-08 11:51:20 +0300389 # static code analysis
onqtam21623a62017-04-27 21:47:46 +0300390 - |
onqtam0decb1d2017-04-30 19:37:29 +0300391 if [[ "${STATIC_CODE_ANALYSIS}" = "true" ]]; then
onqtamebc7da32017-05-13 21:33:19 +0300392 # setup a test file "doctest.cpp" that is the header + a test case at the end
393 echo "#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN\n" >> doctest.cpp
394 cat doctest/doctest.h >> doctest.cpp
onqtamc2b6e132017-05-08 16:37:31 +0300395 echo -e "TEST_CASE(\"\") {\n\tint a = 6;\n\tSUBCASE(\"\") a = 5;\n\tCAPTURE(a);\n\tCHECK(a == 6);\n}\n" >> doctest.cpp
396
onqtamebc7da32017-05-13 21:33:19 +0300397 # cppcheck
398 cppcheck doctest.cpp --enable=all --suppress=unmatchedSuppression --suppress=missingIncludeSystem --suppress=unusedFunction --suppress=functionConst --inline-suppr --platform=unix64 --inconclusive --std=posix --inconclusive -v --error-exitcode=1 --template "{file}({line}): {severity} ({id}): {message}"
399
400 # oclint
401 oclint doctest.cpp -disable-rule=ShortVariableName -disable-rule=LongLine -disable-rule=LongMethod -disable-rule=HighNcssMethod -disable-rule=LongVariableName -disable-rule=HighCyclomaticComplexity -disable-rule=HighNPathComplexity -disable-rule=UnusedLocalVariable -disable-rule=DoubleNegative -disable-rule=MultipleUnaryOperator -disable-rule=DeepNestedBlock || exit 1
onqtam81eab5e2017-05-08 11:51:20 +0300402
403 # clang-tidy
404 cd scripts/playground
onqtamc2b6e132017-05-08 16:37:31 +0300405 cmake ${CMAKE_OPTIONS_GLOBAL} ${CMAKE_OPTIONS} -DCMAKE_CXX_COMPILER=${CXX} . || exit 1
onqtamba6808f2018-05-09 12:00:28 +0300406 clang-tidy-5.0 -p=. *.cpp -header-filter=.* -warnings-as-errors=* -checks='*,-misc-macro-parentheses,-misc-definitions-in-headers,-misc-unused-parameters,-llvm-header-guard,-llvm-include-order,-google-readability-braces-around-statements,-google-runtime-references,-google-readability-todo,-google-build-using-namespace,-google-explicit-constructor,-cert-err58-cpp,-cppcoreguidelines-pro-type-vararg,-cppcoreguidelines-pro-bounds-pointer-arithmetic,-cppcoreguidelines-pro-bounds-array-to-pointer-decay,-cppcoreguidelines-special-member-functions,-cppcoreguidelines-pro-type-reinterpret-cast,-cppcoreguidelines-pro-bounds-constant-array-index,-cppcoreguidelines-pro-type-member-init,-cppcoreguidelines-pro-type-union-access,-clang-analyzer-security.insecureAPI.strcpy,-modernize-use-nullptr,-modernize-use-equals-default,-modernize-loop-convert,-modernize-use-auto,-readability-braces-around-statements,-readability-named-parameter,-readability-else-after-return,-readability-redundant-declaration,-readability-implicit-bool-cast' || exit 1
onqtam81eab5e2017-05-08 11:51:20 +0300407
408 # do not continue with other build configurations after that
409 exit
410 fi
onqtam21623a62017-04-27 21:47:46 +0300411
onqtame4c75fc2016-05-21 01:24:48 +0300412 # initial run with options
onqtamcc350302016-06-28 14:36:28 +0300413 - cmake ${CMAKE_OPTIONS_GLOBAL} ${CMAKE_OPTIONS} -DCMAKE_CXX_COMPILER=${CXX} .
onqtame4c75fc2016-05-21 01:24:48 +0300414
onqtam1586ea22016-05-21 18:02:26 +0300415 # debug x64
onqtam56d91702017-04-16 21:03:58 +0300416 - cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -m64" .
onqtam1586ea22016-05-21 18:02:26 +0300417 - make clean && make -k -j2
onqtam56d91702017-04-16 21:03:58 +0300418 - if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then cmake -DDOCTEST_TEST_MODE=VALGRIND . && ctest --output-on-failure ; fi
419 - cmake -DDOCTEST_TEST_MODE=COMPARE . && ctest --output-on-failure
onqtam1586ea22016-05-21 18:02:26 +0300420 # release x64
onqtam56d91702017-04-16 21:03:58 +0300421 - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -m64" .
onqtam1586ea22016-05-21 18:02:26 +0300422 - make clean && make -k -j2
onqtam56d91702017-04-16 21:03:58 +0300423 - if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then cmake -DDOCTEST_TEST_MODE=VALGRIND . && ctest --output-on-failure ; fi
424 - cmake -DDOCTEST_TEST_MODE=COMPARE . && ctest --output-on-failure
onqtame4c75fc2016-05-21 01:24:48 +0300425 # debug x86
onqtam56d91702017-04-16 21:03:58 +0300426 - cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -m32" .
onqtam316fce22016-05-21 16:57:13 +0300427 - make clean && make -k -j2
onqtam56d91702017-04-16 21:03:58 +0300428 - if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then cmake -DDOCTEST_TEST_MODE=VALGRIND . && ctest --output-on-failure ; fi
429 - cmake -DDOCTEST_TEST_MODE=COMPARE . && ctest --output-on-failure
onqtame4c75fc2016-05-21 01:24:48 +0300430 # release x86
onqtam56d91702017-04-16 21:03:58 +0300431 - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -m32" .
onqtam316fce22016-05-21 16:57:13 +0300432 - make clean && make -k -j2
onqtam56d91702017-04-16 21:03:58 +0300433 - if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then cmake -DDOCTEST_TEST_MODE=VALGRIND . && ctest --output-on-failure ; fi
434 - cmake -DDOCTEST_TEST_MODE=COMPARE . && ctest --output-on-failure
onqtame4c75fc2016-05-21 01:24:48 +0300435
436 # sanitizers - again 32/64 bit Debug/Release configs through address/undefined sanitizers
onqtam56d91702017-04-16 21:03:58 +0300437 - cmake -DDOCTEST_TEST_MODE=NORMAL .
onqtame4c75fc2016-05-21 01:24:48 +0300438 # on separate commands because when something fails I want to see which one exactly
onqtam84b19bc2016-08-26 12:40:31 +0300439 # TODO: when this http://stackoverflow.com/questions/39081183 gets resolved - add these to ASAN as well: check_initialization_order=true:strict_init_order=true
onqtam56d91702017-04-16 21:03:58 +0300440 - if [[ "${HAS_ASAN_64}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -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
441 - if [[ "${HAS_ASAN_32}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -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
442 - if [[ "${HAS_ASAN_64}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -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
443 - if [[ "${HAS_ASAN_32}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -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
444 - if [[ "${HAS_UBSAN_64}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -g -fno-omit-frame-pointer -m64 -fsanitize=undefined" . && make clean && make -k -j2 && UBSAN_OPTIONS=verbosity=2 ctest --output-on-failure ; fi
445 - if [[ "${HAS_UBSAN_32}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -g -fno-omit-frame-pointer -m32 -fsanitize=undefined" . && make clean && make -k -j2 && UBSAN_OPTIONS=verbosity=2 ctest --output-on-failure ; fi
446 - if [[ "${HAS_UBSAN_64}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -g -fno-omit-frame-pointer -m64 -fsanitize=undefined" . && make clean && make -k -j2 && UBSAN_OPTIONS=verbosity=2 ctest --output-on-failure ; fi
447 - if [[ "${HAS_UBSAN_32}" = "true" ]]; then cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -g -fno-omit-frame-pointer -m32 -fsanitize=undefined" . && make clean && make -k -j2 && UBSAN_OPTIONS=verbosity=2 ctest --output-on-failure ; fi
onqtame4c75fc2016-05-21 01:24:48 +0300448
onqtam7a3ad262017-03-18 18:05:10 +0200449 # test in c++0x mode - just Debug/x64
onqtam56d91702017-04-16 21:03:58 +0300450 - cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++0x -m64" .
onqtam5cab8e92016-10-10 17:58:38 +0300451 - make clean && make -k -j2
onqtam56d91702017-04-16 21:03:58 +0300452 - cmake -DDOCTEST_TEST_MODE=COMPARE . && ctest --output-on-failure
onqtam5cab8e92016-10-10 17:58:38 +0300453
onqtam7a3ad262017-03-18 18:05:10 +0200454 # test without rtti - just Debug/x64
onqtam56d91702017-04-16 21:03:58 +0300455 - cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -m64 -fno-rtti" .
onqtamf63c5102017-02-25 20:00:52 +0200456 - make clean && make -k -j2
onqtam56d91702017-04-16 21:03:58 +0300457 - cmake -DDOCTEST_TEST_MODE=COMPARE . && ctest --output-on-failure
onqtamf63c5102017-02-25 20:00:52 +0200458
onqtam7a3ad262017-03-18 18:05:10 +0200459 # test only compilation without exceptions - just Debug/x64
onqtam56d91702017-04-16 21:03:58 +0300460 - cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="${ADDITIONAL_CXX_FLAGS} -std=c++98 -m64 -fno-exceptions -DDOCTEST_CONFIG_NO_EXCEPTIONS_BUT_WITH_ALL_ASSERTS" .
onqtam2d93e042017-03-17 18:57:59 +0200461 - make clean && make -k -j2
462
onqtame4c75fc2016-05-21 01:24:48 +0300463# - ccache -s
464
onqtam2dd55282016-06-13 18:05:38 +0300465#after_script:
466# - cat compile_commands.json