json/.travis.yml

133 lines
3.6 KiB
YAML
Raw Normal View History

2013-07-04 10:54:16 +02:00
language: cpp
dist: trusty
sudo: required
2015-07-24 21:41:07 +02:00
2016-05-29 12:07:20 +02: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: "m89SSgE+ASLO38rSKx7MTXK3n5NkP9bIx95jwY71YEiuFzib30PDJ/DifKnXxBjvy/AkCGztErQRk/8ZCvq+4HXozU2knEGnL/RUitvlwbhzfh2D4lmS3BvWBGS3N3NewoPBrRmdcvnT0xjOGXxtZaJ3P74TkB9GBnlz/HmKORA="
2015-08-22 10:43:04 +02:00
# from http://stackoverflow.com/a/32127147/266378
2015-08-21 19:05:47 +02:00
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-4.9', 'valgrind', 'python-pip', 'python-yaml']
before_script:
- pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
2016-01-02 13:07:22 +01:00
after_success:
- make clean
- touch src/json.hpp
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11 -lstdc++" CXX=$COMPILER
- ./json_unit "*"
- coveralls --exclude test/src/catch.hpp --exclude test/src/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'
2015-08-21 19:05:47 +02:00
env: COMPILER=g++-4.9
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5', 'valgrind']
2016-05-29 12:29:46 +02:00
coverity_scan:
project:
name: "nlohmann/json"
description: "Build submitted via Travis CI"
notification_email: niels.lohmann@gmail.com
2016-05-29 12:57:09 +02:00
build_command_prepend: "make clean ; sudo cp $(which g++-5) $(which g++)"
2016-05-29 14:56:08 +02:00
build_command: "make"
2016-05-29 12:29:46 +02:00
branch_pattern: coverity_scan
2015-08-21 19:05:47 +02:00
env: COMPILER=g++-5
2016-04-29 19:33:43 +02:00
# - os: linux
# compiler: gcc
# addons:
# apt:
# sources: ['ubuntu-toolchain-r-test']
# packages: ['g++-6', 'valgrind']
# env: COMPILER=g++-6
2016-04-29 19:37:52 +02:00
# Clang 3.5 is not able to compile the code,
# see https://travis-ci.org/nlohmann/json/jobs/126720186
2016-04-29 19:29:02 +02:00
2015-08-21 19:05:47 +02:00
- os: linux
compiler: clang
addons:
apt:
2016-04-29 20:09:41 +02:00
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6']
2015-08-21 19:05:47 +02:00
packages: ['clang-3.6', 'valgrind']
env: COMPILER=clang++-3.6
2013-07-04 10:54:16 +02:00
2016-01-02 15:24:13 +01:00
- os: linux
compiler: clang
addons:
apt:
2016-04-29 20:09:41 +02:00
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
2016-01-02 15:24:13 +01:00
packages: ['clang-3.7', 'valgrind']
env: COMPILER=clang++-3.7
2016-04-29 19:29:02 +02:00
- os: linux
compiler: clang
addons:
apt:
2016-04-29 20:09:41 +02:00
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.8']
2016-04-29 19:29:02 +02:00
packages: ['clang-3.8', 'valgrind']
env: COMPILER=clang++-3.8
2016-04-29 19:37:52 +02:00
2016-05-29 14:06:43 +02:00
# - os: linux
# compiler: clang
# addons:
# apt:
# sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise']
# packages: ['clang-3.9', 'valgrind']
# env: COMPILER=clang++-3.9
2016-04-29 20:00:33 +02:00
2016-04-29 20:09:41 +02:00
- os: osx
osx_image: beta-xcode6.1
compiler: clang
env: COMPILER=clang
- os: osx
osx_image: beta-xcode6.2
compiler: clang
env: COMPILER=clang
2016-05-29 13:06:27 +02:00
# - os: osx
# osx_image: beta-xcode6.3
# compiler: clang
# env: COMPILER=clang
2016-04-29 20:09:41 +02:00
- os: osx
osx_image: xcode6.4
compiler: clang
env: COMPILER=clang
2016-04-29 20:00:33 +02:00
- os: osx
osx_image: xcode7.1
compiler: clang
env: COMPILER=clang
2016-01-02 16:37:40 +01:00
2016-04-29 20:00:33 +02:00
- os: osx
osx_image: xcode7.2
compiler: clang
env: COMPILER=clang
2016-04-29 19:46:37 +02:00
- os: osx
osx_image: xcode7.3
compiler: clang
env: COMPILER=clang
2016-01-02 15:24:13 +01:00
2013-07-04 10:54:16 +02:00
script:
2016-04-30 00:43:33 +02:00
- uname -a
2016-04-30 00:25:11 +02:00
- $COMPILER --version
2015-07-24 22:29:03 +02:00
- make CXX=$COMPILER CXXFLAGS="-lstdc++"
- ./json_unit "*"
2016-04-29 20:18:20 +02:00
- if [ `which valgrind` ]; then
2016-04-29 20:00:33 +02:00
valgrind --error-exitcode=1 --leak-check=full ./json_unit ;
fi