-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
79 lines (67 loc) · 1.51 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
language: cpp
sudo: required
dist: trusty
jobs:
include:
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- lcov
env:
- MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- lcov
env:
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-9
- lcov
env:
- MATRIX_EVAL="CC=gcc-9 && CXX=g++-9"
- os: osx
osx_image: xcode7.3
- os: osx
osx_image: xcode10
allow_failures:
- os: osx
osx_image: xcode7.3
- os: osx
osx_image: xcode10
before_install:
- eval "${MATRIX_EVAL}"
before_script:
- $CXX --version
- cmake --version
script:
- mkdir build && cd ./build
- cmake -DENABLE_DEBUG=ON -DENABLE_COVERAGE=ON ..
- make
- ./C3TL-test
after_success:
- lcov --directory ./ --capture --output-file cov.info
- lcov --remove cov.info '/usr/*' "${HOME}"'/.cache/*' '*/catch.hpp' --output-file cov.info
- lcov --list cov.info
- bash <(curl -s https://codecov.io/bash) -f cov.info || echo "Codecov did not collect coverage reports"
branches:
only:
- master
- release
- dev
- /^(?i:feature)-.*$/
notifications:
email: false