|
|
@@ -2,13 +2,6 @@ language: cpp
|
|
|
|
|
|
matrix:
|
|
|
include:
|
|
|
- - os: linux
|
|
|
- compiler: gcc
|
|
|
- addons:
|
|
|
- apt:
|
|
|
- sources: ['ubuntu-toolchain-r-test']
|
|
|
- packages: ['g++-5']
|
|
|
- env: COMPILER=g++-5
|
|
|
- os: linux
|
|
|
compiler: gcc
|
|
|
addons:
|
|
|
@@ -23,14 +16,23 @@ matrix:
|
|
|
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.8']
|
|
|
packages: ['clang-3.8']
|
|
|
env: COMPILER=clang++-3.8
|
|
|
- - os: osx
|
|
|
- osx_image: xcode7.3
|
|
|
- compiler: clang
|
|
|
- env: COMPILER=clang++
|
|
|
- os: osx
|
|
|
osx_image: xcode8
|
|
|
compiler: clang
|
|
|
env: COMPILER=clang++
|
|
|
+- os: linux
|
|
|
+ compiler: gcc
|
|
|
+ addons:
|
|
|
+ apt:
|
|
|
+ sources: ['ubuntu-toolchain-r-test']
|
|
|
+ packages: ['g++-6']
|
|
|
+ env:
|
|
|
+ - COMPILER=g++-6
|
|
|
+ - CXXFLAGS="-O0 --coverage -fno-inline -fno-inline-small-functions -fno-default-inline"
|
|
|
+ before_script:
|
|
|
+ - pip install --user cpp-coveralls
|
|
|
+ after_success:
|
|
|
+ - coveralls --gcov gcov-6 --gcov-options '\-lp' --root ${TRAVIS_BUILD_DIR} --build-root ${TRAVIS_BUILD_DIR}/build --extension cpp --extension hpp --exclude deps --include src
|
|
|
|
|
|
notifications:
|
|
|
email:
|