This commit is contained in:
Niels 2015-06-21 21:42:55 +02:00
parent 366620d85a
commit 7cc42d9e58
2 changed files with 0 additions and 31 deletions

7
.gitignore vendored
View File

@ -1,7 +0,0 @@
json_unit
json_benchmarks
working
html
me.nlohmann.json.docset

View File

@ -1,24 +0,0 @@
language: cpp
compiler:
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- 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
- sudo pip install cpp-coveralls pyyaml
- sudo apt-get install valgrind
script:
- make
- ./json_unit "*"
- valgrind --error-exitcode=1 --leak-check=full ./json_unit
after_success:
- make clean
- touch src/json.hpp
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11"
- ./json_unit "*"
- coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'