diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 4210a192e..000000000 --- a/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -json_unit -json_benchmarks - -working - -html -me.nlohmann.json.docset diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1a5bc24da..000000000 --- a/.travis.yml +++ /dev/null @@ -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'