This commit is contained in:
Niels 2015-07-24 22:00:48 +02:00
parent 56f1db2996
commit af5efeeff6

View file

@ -2,15 +2,18 @@ language: cpp
sudo: false sudo: false
compiler: env:
- gcc - CXX=g++-4.9
- CXX=g++-4.8
addons: addons:
apt: apt:
sources: sources:
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test
packages: packages:
- g++-4.8
- g++-4.9 - g++-4.9
- g++-5
- valgrind - valgrind
- python-pip - python-pip
- python-yaml - python-yaml
@ -19,13 +22,13 @@ before_script:
- pip install --user git+git://github.com/eddyxu/cpp-coveralls.git - pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
script: script:
- make CXX=g++-4.9 - make
- ./json_unit "*" - ./json_unit "*"
- valgrind --error-exitcode=1 --leak-check=full ./json_unit - valgrind --error-exitcode=1 --leak-check=full ./json_unit
after_success: after_success:
- make clean - make clean
- touch src/json.hpp - touch src/json.hpp
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11" CXX=g++-4.9 - make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11"
- ./json_unit "*" - ./json_unit "*"
- coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9' - coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'