Script seems to fail to report coverage. Explictly specifying the commands.

This commit is contained in:
Omer Katz 2015-12-30 15:55:24 +02:00
parent c3cd3edad2
commit db11011a5c
2 changed files with 4 additions and 6 deletions

View File

@ -64,7 +64,8 @@ matrix:
- g++-multilib
- libc6-dbg:i386
after_success:
- ../travis-coveralls.sh
- pip install --user cpp-coveralls
- coveralls -r .. --gcov-options '\-lp' -e thirdparty -e example -e test -e build/CMakeFiles -e include/rapidjson/msinttypes -e include/rapidjson/internal/meta.h -e include/rapidjson/error/en.h
- env: CONF=debug ARCH=x86_64 GCOV_FLAGS='--coverage'
compiler: gcc
addons:
@ -74,7 +75,8 @@ matrix:
- g++-multilib
- libc6-dbg:i386
after_success:
- ../travis-coveralls.sh
- pip install --user cpp-coveralls
- coveralls -r .. --gcov-options '\-lp' -e thirdparty -e example -e test -e build/CMakeFiles -e include/rapidjson/msinttypes -e include/rapidjson/internal/meta.h -e include/rapidjson/error/en.h
before_script:
# hack to avoid Valgrind bug (https://bugs.kde.org/show_bug.cgi?id=326469),

View File

@ -1,4 +0,0 @@
#!/bin/bash
pip install --user cpp-coveralls
coveralls -r .. --gcov-options '\-lp' -e thirdparty -e example -e test -e build/CMakeFiles -e include/rapidjson/msinttypes -e include/rapidjson/internal/meta.h -e include/rapidjson/error/en.h