try with GCC 4.9
This commit is contained in:
parent
d6f54711f3
commit
a35d93e980
2 changed files with 351 additions and 3 deletions
|
|
@ -6,8 +6,8 @@ compiler:
|
|||
before_install:
|
||||
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
||||
- sudo apt-get update -qq
|
||||
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
|
||||
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
|
||||
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.9; fi
|
||||
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
|
||||
- sudo pip install cpp-coveralls pyyaml
|
||||
- sudo apt-get install valgrind
|
||||
|
||||
|
|
@ -24,4 +24,4 @@ after_success:
|
|||
- make clean
|
||||
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage"
|
||||
- ./json_unit
|
||||
- coveralls --gcov-options '\-lp' --gcov 'gcov-4.8'
|
||||
- coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue