json/.travis.yml

52 lines
1.5 KiB
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-08-22 10:43:04 +02:00
# from http://stackoverflow.com/a/32127147/266378
2015-08-21 19:05:47 +02: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
2016-01-02 13:07:22 +01:00
after_success:
- make clean
- touch src/json.hpp
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11 -lstdc++" CXX=$COMPILER
- ./json_unit "*"
- coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'
2015-08-21 19:05:47 +02:00
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 10:54:16 +02:00
2016-01-02 15:24:13 +01:00
- os: linux
compiler: clang
addons:
apt:
2016-01-02 15:30:12 +01:00
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
2016-01-02 15:24:13 +01:00
packages: ['clang-3.7', 'valgrind']
env: COMPILER=clang++-3.7
2013-07-04 10:54:16 +02:00
script:
2015-07-24 22:29:03 +02:00
- make CXX=$COMPILER CXXFLAGS="-lstdc++"
- ./json_unit "*"
- valgrind --error-exitcode=1 --leak-check=full ./json_unit