json/.travis.yml

30 lines
590 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-06-24 23:08:40 +02:00
compiler:
- gcc
2013-07-04 10:54:16 +02:00
2015-07-24 21:41:07 +02:00
addons:
apt:
packages:
- g++-4.9
- valgrind
- python-pip
- python-yaml
before_script:
- pip install git+git://github.com/eddyxu/cpp-coveralls.git
2013-07-04 10:54:16 +02:00
script:
- make
- ./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-02-08 18:27:16 +01:00
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11"
- ./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'