2015-10-27 04:47:36 +08:00
|
|
|
language: cpp
|
2017-03-22 11:12:04 +08:00
|
|
|
sudo: false
|
2016-06-12 03:29:15 +08:00
|
|
|
dist: trusty
|
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: false
|
2015-11-21 10:30:32 +08:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
addons:
|
|
|
|
apt:
|
2016-06-12 03:29:15 +08:00
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
2017-03-22 08:35:50 +08:00
|
|
|
- g++-6 zlib1g libcrypto++9 libcrypto++9-dbg libcrypto++-dev cxxtest lcov
|
2016-06-12 03:29:15 +08:00
|
|
|
env:
|
2017-03-22 08:25:52 +08:00
|
|
|
- COVERAGE=ON
|
2017-01-03 02:57:56 +08:00
|
|
|
- STATIC=ON
|
2017-03-22 09:25:38 +08:00
|
|
|
- SAMPLES=OFF
|
|
|
|
- BENCHMARKS=OFF
|
2015-11-21 10:30:32 +08:00
|
|
|
|
2017-03-22 08:25:52 +08:00
|
|
|
install:
|
2017-03-22 12:29:39 +08:00
|
|
|
- export CC=gcc-6
|
|
|
|
- export CXX=g++-6
|
2017-03-22 08:25:52 +08:00
|
|
|
- gem install coveralls-lcov
|
|
|
|
|
2017-03-22 09:07:21 +08:00
|
|
|
script:
|
2017-03-22 08:25:52 +08:00
|
|
|
- mkdir build
|
2017-03-22 09:20:08 +08:00
|
|
|
- cd build
|
2017-03-22 12:21:31 +08:00
|
|
|
- cmake -D STATIC=$STATIC -D BENCHMARKS=$BENCHMARKS -D SAMPLES=$SAMPLES -D COVERAGE=$COVERAGE -D CMAKE_BUILD_TYPE=Debug ..
|
2017-03-22 10:34:49 +08:00
|
|
|
- make VERBOSE=1
|
2017-03-22 12:21:31 +08:00
|
|
|
- ./tests/xlnt.test
|
2017-03-22 08:25:52 +08:00
|
|
|
|
2017-03-22 08:28:10 +08:00
|
|
|
after_success:
|
2017-03-22 12:21:31 +08:00
|
|
|
- find .. -name "*.gcda"
|
2017-03-22 10:05:08 +08:00
|
|
|
- lcov --compat-libtool --directory source/CMakeFiles/xlnt.dir --capture --output-file coverage.info --gcov-tool /usr/bin/gcov-6
|
2017-03-22 08:25:52 +08:00
|
|
|
- coveralls-lcov coverage.info
|