Skip to content

Commit

Permalink
add gcov install in travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mnpk committed Jun 10, 2015
1 parent b2dee9c commit e3623fc
Show file tree
Hide file tree
Showing 2 changed files with 5,387 additions and 5,383 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ compiler:
#- clang

before_script:
- sudo pip install cpp-coveralls
- sudo add-apt-repository -y ppa:kalakris/cmake
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo add-apt-repository -y ppa:boost-latest/ppa
- sudo apt-get -qq update
- sudo apt-get install -qq binutils
- sudo apt-get install -qq libboost1.55-all-dev
- sudo apt-get install -qq g++-4.8
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
Expand All @@ -25,6 +27,8 @@ script: make && ctest

after_success:
- cd ..
- sudo pip install cpp-coveralls
- which gcov
- gcov -v
- which gcov-4.9
- coveralls -i include --gcov-options '\-lp'

Loading

0 comments on commit e3623fc

Please sign in to comment.