mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
# from: https://github.com/nlohmann/json/blob/master/.travis.yml
|
|
|
|
language: cpp
|
|
|
|
sudo: false
|
|
|
|
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
|
|
env: COMPILER=g++-4.9
|
|
|
|
- os: linux
|
|
compiler: gcc
|
|
addons:
|
|
apt:
|
|
sources: ['ubuntu-toolchain-r-test']
|
|
packages: ['g++-5', 'valgrind']
|
|
env: COMPILER=g++-5
|
|
|
|
- os: linux
|
|
compiler: clang
|
|
addons:
|
|
apt:
|
|
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6']
|
|
packages: ['clang-3.6', 'valgrind']
|
|
env: COMPILER=clang++-3.6
|
|
|
|
script:
|
|
- env
|
|
- mkdir build
|
|
- cd build
|
|
- cmake -G Unix Makefiles SHARED=1 BUILD_TESTS=1 -DCMAKE_CXX_COMPILE=$COMPILE -DCMAKE_CXX_FLAGS="-lstdc++" ../cmake
|
|
- make VERBOSE=1
|
|
- ../bin/xlnt.test
|
|
- valgrind --error-exitcode=1 --leak-check=full ../bin/xlnt.test
|
|
|
|
after_success:
|
|
- if [ "$COMPILER" = "g++-4.9" ]; then cd .. && mkdir build && cd build ; fi
|
|
- if [ "$COMPILER" = "g++-4.9" ]; then cmake -G Unix Makefiles SHARED=1 BUILD_TESTS=1 -DCMAKE_CXX_COMPILE=$COMPILE -DCMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage -lstdc++" ../cmake
|
|
- if [ "$COMPILER" = "g++-4.9" ]; then make xlnt.test ; fi
|
|
- if [ "$COMPILER" = "g++-4.9" ]; then ../bin/xlnt.test ; fi
|
|
- if [ "$COMPILER" = "g++-4.9" ]; then coveralls --include ../source/worksheet/test_worksheet.hpp --gcov-options '\-lp' --gcov 'gcov-4.9' ; fi
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
|