2013-07-04 16:54:16 +08:00
|
|
|
language: cpp
|
|
|
|
|
2015-07-25 03:41:07 +08:00
|
|
|
sudo: false
|
|
|
|
|
2015-06-25 05:08:40 +08:00
|
|
|
compiler:
|
|
|
|
- gcc
|
2013-07-04 16:54:16 +08:00
|
|
|
|
2015-07-25 03:41:07 +08:00
|
|
|
addons:
|
|
|
|
apt:
|
2015-07-25 03:46:46 +08:00
|
|
|
sources:
|
2015-07-25 03:51:01 +08:00
|
|
|
- extras-precise
|
2015-07-25 03:41:07 +08:00
|
|
|
packages:
|
|
|
|
- g++-4.9
|
|
|
|
- valgrind
|
|
|
|
- python-pip
|
|
|
|
- python-yaml
|
|
|
|
|
|
|
|
before_script:
|
2015-07-25 03:43:07 +08:00
|
|
|
- pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
|
2013-07-04 16:54:16 +08:00
|
|
|
|
|
|
|
script:
|
|
|
|
- make
|
2015-06-15 11:46:12 +08:00
|
|
|
- ./json_unit "*"
|
2015-01-07 01:57:44 +08:00
|
|
|
- valgrind --error-exitcode=1 --leak-check=full ./json_unit
|
2014-12-28 16:11:01 +08:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- make clean
|
2015-02-09 02:22:48 +08:00
|
|
|
- touch src/json.hpp
|
2015-02-09 01:27:16 +08:00
|
|
|
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11"
|
2015-06-15 11:46:12 +08:00
|
|
|
- ./json_unit "*"
|
2015-02-08 23:57:53 +08:00
|
|
|
- coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'
|