2015-11-21 10:30:32 +08:00
|
|
|
# from: https://github.com/nlohmann/json/blob/master/.travis.yml
|
|
|
|
|
2015-10-27 04:47:36 +08:00
|
|
|
language: cpp
|
2015-11-21 10:30:32 +08:00
|
|
|
|
2016-06-12 03:29:15 +08:00
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: false
|
2015-11-21 10:30:32 +08:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
2016-06-12 03:29:15 +08:00
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
2017-03-22 08:25:52 +08:00
|
|
|
- g++-6 zlib1g libcrypto++9 libcrypto++9-dbg libcrypto++-dev cxxtest lcov ruby
|
2016-06-12 03:29:15 +08:00
|
|
|
env:
|
2017-01-03 03:03:48 +08:00
|
|
|
- COMPILER=g++-6
|
2017-03-22 08:25:52 +08:00
|
|
|
- COVERAGE=ON
|
2017-01-03 02:57:56 +08:00
|
|
|
- STATIC=ON
|
2016-11-01 10:47:09 +08:00
|
|
|
- SAMPLES=ON
|
2016-12-03 23:46:48 +08:00
|
|
|
- BENCHMARKS=ON
|
2015-11-21 10:30:32 +08:00
|
|
|
|
2017-03-22 08:25:52 +08:00
|
|
|
install:
|
|
|
|
- gem install coveralls-lcov
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- mkdir build
|
|
|
|
- cmake -H . -B build -D STATIC=$STATIC -D BENCHMARKS=$BENCHMARKS -D SAMPLES=$SAMPLES -D COVERAGE=$COVERAGE -D CMAKE_CXX_COMPILER=$COMPILER -D CMAKE_BUILD_TYPE=Debug ..
|
|
|
|
|
2015-10-27 03:57:37 +08:00
|
|
|
script:
|
2017-03-22 08:25:52 +08:00
|
|
|
- cmake --build build
|
|
|
|
- ./build/tests/xlnt.test
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- lcov --compat-libtool --directory build --capture --output-file coverage.info
|
|
|
|
- coveralls-lcov coverage.info
|