json/.travis.yml

42 lines
1.1 KiB
YAML
Raw Normal View History

2013-07-04 08:54:16 +00:00
language: cpp
2015-07-24 19:41:07 +00:00
sudo: false
2015-07-24 20:11:09 +00:00
compiler:
- gcc
2015-07-24 20:00:48 +00:00
env:
2015-07-24 20:03:45 +00:00
- COMPILER=g++-4.9
- COMPILER=g++-5
2015-07-24 20:08:29 +00:00
- COMPILER=clang-3.6
2013-07-04 08:54:16 +00:00
2015-07-24 19:41:07 +00:00
addons:
apt:
2015-07-24 19:46:46 +00:00
sources:
2015-07-24 19:52:56 +00:00
- ubuntu-toolchain-r-test
2015-07-24 20:21:30 +00:00
- llvm-toolchain-precise
2015-07-24 20:16:24 +00:00
- llvm-toolchain-precise-3.6
- llvm-toolchain-precise-3.7
2015-07-24 19:41:07 +00:00
packages:
- g++-4.9
2015-07-24 20:00:48 +00:00
- g++-5
2015-07-24 20:08:29 +00:00
- clang-3.6
2015-07-24 19:41:07 +00:00
- valgrind
- python-pip
- python-yaml
before_script:
2015-07-24 19:43:07 +00:00
- pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
2013-07-04 08:54:16 +00:00
script:
2015-07-24 20:29:03 +00:00
- make CXX=$COMPILER CXXFLAGS="-lstdc++"
- ./json_unit "*"
- 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