json/.travis.yml
2015-07-24 21:41:07 +02:00

30 lines
590 B
YAML

language: cpp
sudo: false
compiler:
- gcc
addons:
apt:
packages:
- g++-4.9
- valgrind
- python-pip
- python-yaml
before_script:
- pip install git+git://github.com/eddyxu/cpp-coveralls.git
script:
- make
- ./json_unit "*"
- valgrind --error-exitcode=1 --leak-check=full ./json_unit
after_success:
- make clean
- touch src/json.hpp
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11"
- ./json_unit "*"
- coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'