blob: d0eb5f1b44d7c02dd3063ae19f287c7d55d80367 [file] [log] [blame]
language: cpp
sudo: false
compiler:
- gcc
env:
- COMPILER=g++-4.9
- COMPILER=g++-5
- COMPILER=clang-3.6
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise
- llvm-toolchain-precise-3.6
- llvm-toolchain-precise-3.7
packages:
- g++-4.9
- g++-5
- clang-3.6
- valgrind
- python-pip
- python-yaml
before_script:
- pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
script:
- make CXX=$COMPILER CXXFLAGS="-lstdc++"
- ./json_unit "*"
- valgrind --error-exitcode=1 --leak-check=full ./json_unit
after_success:
- if [ "$COMPILER" = "g++-4.9" ]; make clean
- if [ "$COMPILER" = "g++-4.9" ]; touch src/json.hpp
- if [ "$COMPILER" = "g++-4.9" ]; make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11 -lstdc++" CXX=$COMPILER
- if [ "$COMPILER" = "g++-4.9" ]; ./json_unit "*"
- if [ "$COMPILER" = "g++-4.9" ]; coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'