2013-07-04 08:54:16 +00:00
|
|
|
language: cpp
|
|
|
|
|
|
|
|
compiler:
|
2014-12-28 08:11:01 +00:00
|
|
|
- gcc
|
2013-07-04 08:54:16 +00:00
|
|
|
|
2014-12-28 08:11:01 +00:00
|
|
|
before_install:
|
2014-12-28 08:21:06 +00:00
|
|
|
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
|
|
|
- sudo apt-get update -qq
|
2015-02-08 15:57:53 +00: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 10:24:40 +00:00
|
|
|
- sudo pip install cpp-coveralls pyyaml
|
2015-02-13 20:46:33 +00:00
|
|
|
- sudo apt-get install valgrind
|
2013-07-04 08:54:16 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
- make
|
2015-06-15 03:46:12 +00:00
|
|
|
- ./json_unit "*"
|
2015-01-06 17:57:44 +00:00
|
|
|
- valgrind --error-exitcode=1 --leak-check=full ./json_unit
|
2014-12-28 08:11:01 +00:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- make clean
|
2015-02-08 18:22:48 +00:00
|
|
|
- touch src/json.hpp
|
2015-02-08 17:27:16 +00:00
|
|
|
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11"
|
2015-06-15 03:46:12 +00:00
|
|
|
- ./json_unit "*"
|
2015-02-08 15:57:53 +00:00
|
|
|
- coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'
|
2015-06-21 09:29:24 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
|
|
|
|
# via the "travis encrypt" command using the project repo's public key
|
|
|
|
- secure: "kzVz6s9W/rAs3e9nK5cU1vSXkNG0Kqe0g/WHybXNFVkiNTE/eauKgpcxc9QPnPVsLZmS9knANnf3V1/i/u50uYwrmf6ntlka67sXBiACnaYqUsGZ07F0i3evL84OsY/ViXmJ60AbcNDtCJR9oepAH7ANGHLL8z6yX4/m+Ocaj6s="
|
|
|
|
|
|
|
|
addons:
|
|
|
|
coverity_scan:
|
|
|
|
project:
|
|
|
|
name: "nlohmann/json"
|
|
|
|
description: "Build submitted via Travis CI"
|
|
|
|
notification_email: niels.lohmann@gmail.com
|
|
|
|
build_command_prepend: "make clean"
|
|
|
|
build_command: "make"
|
2015-06-21 09:48:45 +00:00
|
|
|
branch_pattern: master
|