2013-07-04 08:54:16 +00:00
|
|
|
language: cpp
|
|
|
|
|
2015-07-24 19:41:07 +00:00
|
|
|
sudo: false
|
|
|
|
|
2015-06-24 21:08:40 +00:00
|
|
|
compiler:
|
|
|
|
- gcc
|
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 19:41:07 +00:00
|
|
|
packages:
|
|
|
|
- g++-4.9
|
|
|
|
- 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:
|
|
|
|
- make
|
2015-06-15 03:46:12 +00:00
|
|
|
- ./json_unit "*"
|
2015-01-06 17:57:44 +00:00
|
|
|
- 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-02-08 17:27:16 +00:00
|
|
|
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11"
|
2015-06-15 03:46:12 +00:00
|
|
|
- ./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'
|