2013-07-04 08:54:16 +00:00
|
|
|
language: cpp
|
|
|
|
|
2015-07-24 19:41:07 +00:00
|
|
|
sudo: false
|
|
|
|
|
2015-08-21 17:05:47 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: ['ubuntu-toolchain-r-test']
|
|
|
|
packages: ['g++-4.9', 'valgrind', 'python-pip', 'python-yaml']
|
|
|
|
before_script:
|
|
|
|
- pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
|
|
|
|
env: COMPILER=g++-4.9
|
|
|
|
|
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: ['ubuntu-toolchain-r-test']
|
|
|
|
packages: ['g++-5', 'valgrind']
|
|
|
|
env: COMPILER=g++-5
|
|
|
|
|
|
|
|
|
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6']
|
|
|
|
packages: ['clang-3.6', 'valgrind']
|
|
|
|
env: COMPILER=clang++-3.6
|
2013-07-04 08:54:16 +00:00
|
|
|
|
|
|
|
script:
|
2015-07-24 20:29:03 +00:00
|
|
|
- make CXX=$COMPILER CXXFLAGS="-lstdc++"
|
2015-06-15 03:46:12 +00:00
|
|
|
- ./json_unit "*"
|
2015-01-06 17:57:44 +00:00
|
|
|
- valgrind --error-exitcode=1 --leak-check=full ./json_unit
|
2014-12-28 08:11:01 +00:00
|
|
|
|
|
|
|
after_success:
|
2015-08-06 19:33:24 +00:00
|
|
|
- if [ "$COMPILER" = "g++-4.9" ]; then make clean ; fi
|
|
|
|
- if [ "$COMPILER" = "g++-4.9" ]; then touch src/json.hpp ; fi
|
|
|
|
- if [ "$COMPILER" = "g++-4.9" ]; then make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11 -lstdc++" CXX=$COMPILER ; fi
|
|
|
|
- if [ "$COMPILER" = "g++-4.9" ]; then ./json_unit "*" ; fi
|
|
|
|
- if [ "$COMPILER" = "g++-4.9" ]; then coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9' ; fi
|