Skip to content

Commit

Permalink
Problem: coverage is not enabled
Browse files Browse the repository at this point in the history
Solution: add coveralls
  • Loading branch information
sigiesec committed Mar 29, 2018
1 parent 968473c commit e5ca9a0
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Travis CI script

language: c
language: cpp

os:
- linux
Expand All @@ -10,6 +10,11 @@ dist: trusty

cache: ccache

addons:
apt:
sources:
- ubuntu-toolchain-r-test

env:
matrix:
# - BUILD_TYPE=cmake DRAFT=enabled
Expand All @@ -28,6 +33,12 @@ matrix:

sudo: required

before_install:
- pip install --user cpp-coveralls

# Build and check this project according to the BUILD_TYPE
script:
- ./ci_build.sh

after_success:
- coveralls --root . -E ".*external.*" -E ".*CMakeFiles.*" -E ".*tests/"

0 comments on commit e5ca9a0

Please sign in to comment.