-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (32 loc) · 898 Bytes
/
.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
language: cpp
sudo: required
dist: trusty
matrix:
include:
- os: linux
compiler: gcc
env: BUILD_TYPE=Debug CODECOV=ON COMPILER=GCC
- os: linux
compiler: gcc
env: BUILD_TYPE=Release CODECOV=OFF COMPILER=GCC
- os: linux
compiler: clang
env: BUILD_TYPE=Debug CODECOV=OFF COMPILER=CLANG
- os: linux
compiler: clang
env: BUILD_TYPE=Release CODECOV=OFF COMPILER=CLANG
- os: osx
compiler: clang
env: BUILD_TYPE=Debug CODECOV=OFF COMPILER=CLANG
- os: osx
compiler: clang
env: BUILD_TYPE=Release CODECOV=OFF COMPILER=CLANG
install:
- 'ci/install.sh'
script:
- 'ci/script.sh'
after_success:
- bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"
after_failure:
- cat build/Testing/Temporary/LastTest.log
- cat build/Testing/Temporary/LastTestsFailed.log