json/.travis.yml

44 lines
899 B
YAML
Raw Normal View History

2013-07-04 10:54:16 +02:00
language: cpp
2015-07-24 21:41:07 +02:00
sudo: false
2015-07-24 22:11:09 +02:00
compiler:
- gcc
2015-07-24 22:00:48 +02:00
env:
2015-07-24 22:03:45 +02:00
- COMPILER=g++-4.9
- COMPILER=g++-5
2015-07-24 22:08:29 +02:00
- COMPILER=clang-3.6
- COMPILER=clang-3.7
2013-07-04 10:54:16 +02:00
2015-07-24 21:41:07 +02:00
addons:
apt:
2015-07-24 21:46:46 +02:00
sources:
2015-07-24 21:52:56 +02:00
- ubuntu-toolchain-r-test
2015-07-24 22:21:30 +02:00
- llvm-toolchain-precise
2015-07-24 22:16:24 +02:00
- llvm-toolchain-precise-3.6
- llvm-toolchain-precise-3.7
2015-07-24 21:41:07 +02:00
packages:
- g++-4.9
2015-07-24 22:00:48 +02:00
- g++-5
2015-07-24 22:08:29 +02:00
- clang-3.6
- clang-3.7
2015-07-24 21:41:07 +02:00
- valgrind
- python-pip
- python-yaml
before_script:
2015-07-24 21:43:07 +02:00
- pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
2013-07-04 10:54:16 +02:00
script:
2015-07-24 22:03:45 +02:00
- make CXX=$COMPILER
- ./json_unit "*"
- valgrind --error-exitcode=1 --leak-check=full ./json_unit
2014-12-28 09:11:01 +01:00
after_success:
- make clean
2015-02-08 19:22:48 +01:00
- touch src/json.hpp
2015-07-24 22:03:45 +02:00
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11" CXX=$COMPILER
- ./json_unit "*"
2015-02-08 16:57:53 +01:00
- coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'