We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 968473c commit e5ca9a0Copy full SHA for e5ca9a0
.travis.yml
@@ -1,6 +1,6 @@
1
# Travis CI script
2
3
-language: c
+language: cpp
4
5
os:
6
- linux
@@ -10,6 +10,11 @@ dist: trusty
10
11
cache: ccache
12
13
+addons:
14
+ apt:
15
+ sources:
16
+ - ubuntu-toolchain-r-test
17
+
18
env:
19
matrix:
20
# - BUILD_TYPE=cmake DRAFT=enabled
@@ -28,6 +33,12 @@ matrix:
28
33
29
34
sudo: required
30
35
36
+before_install:
37
+ - pip install --user cpp-coveralls
38
31
39
# Build and check this project according to the BUILD_TYPE
32
40
script:
41
- ./ci_build.sh
42
43
+after_success:
44
+ - coveralls --root . -E ".*external.*" -E ".*CMakeFiles.*" -E ".*tests/"
0 commit comments