2013-07-04 12:54:16 +04:00
|
|
|
language: cpp
|
|
|
|
|
2015-07-24 22:41:07 +03:00
|
|
|
sudo: false
|
|
|
|
|
2015-07-24 23:11:09 +03:00
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
|
2015-07-24 23:00:48 +03:00
|
|
|
env:
|
2015-07-24 23:03:45 +03:00
|
|
|
- COMPILER=g++-4.9
|
|
|
|
- COMPILER=g++-5
|
2015-07-24 23:08:29 +03:00
|
|
|
- COMPILER=clang-3.6
|
2013-07-04 12:54:16 +04:00
|
|
|
|
2015-07-24 22:41:07 +03:00
|
|
|
addons:
|
|
|
|
apt:
|
2015-07-24 22:46:46 +03:00
|
|
|
sources:
|
2015-07-24 22:52:56 +03:00
|
|
|
- ubuntu-toolchain-r-test
|
2015-07-24 23:21:30 +03:00
|
|
|
- llvm-toolchain-precise
|
2015-07-24 23:16:24 +03:00
|
|
|
- llvm-toolchain-precise-3.6
|
|
|
|
- llvm-toolchain-precise-3.7
|
2015-07-24 22:41:07 +03:00
|
|
|
packages:
|
|
|
|
- g++-4.9
|
2015-07-24 23:00:48 +03:00
|
|
|
- g++-5
|
2015-07-24 23:08:29 +03:00
|
|
|
- clang-3.6
|
2015-07-24 22:41:07 +03:00
|
|
|
- valgrind
|
|
|
|
- python-pip
|
|
|
|
- python-yaml
|
|
|
|
|
|
|
|
before_script:
|
2015-07-24 22:43:07 +03:00
|
|
|
- pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
|
2013-07-04 12:54:16 +04:00
|
|
|
|
|
|
|
script:
|
2015-07-24 23:29:03 +03:00
|
|
|
- make CXX=$COMPILER CXXFLAGS="-lstdc++"
|
2015-06-15 06:46:12 +03:00
|
|
|
- ./json_unit "*"
|
2015-01-06 20:57:44 +03:00
|
|
|
- valgrind --error-exitcode=1 --leak-check=full ./json_unit
|
2014-12-28 11:11:01 +03:00
|
|
|
|
|
|
|
after_success:
|
2015-07-24 23:41:12 +03:00
|
|
|
- if [ "$COMPILER" = "g++-4.9" ]; make clean
|
|
|
|
- if [ "$COMPILER" = "g++-4.9" ]; touch src/json.hpp
|
|
|
|
- if [ "$COMPILER" = "g++-4.9" ]; make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11 -lstdc++" CXX=$COMPILER
|
|
|
|
- if [ "$COMPILER" = "g++-4.9" ]; ./json_unit "*"
|
|
|
|
- if [ "$COMPILER" = "g++-4.9" ]; coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'
|