json/.travis.yml

44 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
- COMPILER=clang-3.7
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
- clang-3.7
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-07-24 20:41:12 +00:00
- 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'