xlnt/.travis.yml

44 lines
1014 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
- SAMPLES=OFF
- BENCHMARKS=OFF
install:
2017-03-22 09:57:48 +08:00
- gcov --version
- ls -al /usr/bin/gcov*
- gem install coveralls-lcov
2017-03-22 09:07:21 +08:00
script:
- mkdir build
2017-03-22 09:20:08 +08:00
- cd build
- cmake -D STATIC=$STATIC -D BENCHMARKS=$BENCHMARKS -D SAMPLES=$SAMPLES -D COVERAGE=$COVERAGE -D CMAKE_CXX_COMPILER=$COMPILER -D CMAKE_BUILD_TYPE=Debug ..
- cmake --build .
- ./tests/xlnt.test
2017-03-22 08:28:10 +08:00
after_success:
2017-03-22 09:57:48 +08:00
- ls source/CMakeFiles/xlnt.dir/cell
2017-03-22 09:41:57 +08:00
- lcov --compat-libtool --directory source/CMakeFiles/xlnt.dir --capture --output-file coverage.info
- coveralls-lcov coverage.info