mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-13 10:52:57 +01:00
Problem: coverage is not enabled
Solution: add coveralls
This commit is contained in:
parent
968473cdba
commit
e5ca9a0a95
13
.travis.yml
13
.travis.yml
@ -1,6 +1,6 @@
|
||||
# Travis CI script
|
||||
|
||||
language: c
|
||||
language: cpp
|
||||
|
||||
os:
|
||||
- linux
|
||||
@ -10,6 +10,11 @@ dist: trusty
|
||||
|
||||
cache: ccache
|
||||
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- ubuntu-toolchain-r-test
|
||||
|
||||
env:
|
||||
matrix:
|
||||
# - BUILD_TYPE=cmake DRAFT=enabled
|
||||
@ -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/"
|
||||
|
Loading…
Reference in New Issue
Block a user