json/.travis.yml

25 lines
716 B
YAML
Raw Normal View History

2013-07-04 10:54:16 +02:00
language: cpp
compiler:
2014-12-28 09:11:01 +01:00
- gcc
2013-07-04 10:54:16 +02:00
2014-12-28 09:11:01 +01:00
before_install:
2014-12-28 09:21:06 +01:00
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
2015-02-08 16:57:53 +01:00
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.9; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
2014-12-28 11:24:40 +01:00
- sudo pip install cpp-coveralls pyyaml
2015-02-13 21:46:33 +01:00
- sudo apt-get install valgrind
2013-07-04 10:54:16 +02:00
script:
- make
2014-12-28 15:46:36 +01:00
- ./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"
2014-12-28 09:11:01 +01:00
- ./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'