xlnt/.travis.yml

42 lines
935 B
YAML
Raw Normal View History

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