json/.travis.yml

44 lines
899 B
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:03:45 +00:00
- make CXX=$COMPILER
- ./json_unit "*"
- valgrind --error-exitcode=1 --leak-check=full ./json_unit
2014-12-28 08:11:01 +00:00
after_success:
- make clean
2015-02-08 18:22:48 +00:00
- touch src/json.hpp
2015-07-24 20:03:45 +00:00
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11" CXX=$COMPILER
- ./json_unit "*"
2015-02-08 15:57:53 +00:00
- coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'