2013-08-05 12:40:33 +02:00
|
|
|
language: cpp
|
2019-10-29 23:38:21 +01:00
|
|
|
dist: xenial
|
|
|
|
|
2013-08-05 12:40:33 +02:00
|
|
|
|
2018-03-07 10:13:04 +01:00
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- /dev-appveyor.*/
|
|
|
|
|
2017-11-05 12:46:04 +01:00
|
|
|
common_sources: &all_sources
|
|
|
|
- ubuntu-toolchain-r-test
|
2019-10-29 23:38:21 +01:00
|
|
|
- llvm-toolchain-xenial
|
|
|
|
- llvm-toolchain-xenial-3.8
|
|
|
|
- llvm-toolchain-xenial-3.9
|
|
|
|
- llvm-toolchain-xenial-4.0
|
2019-09-06 11:14:48 +02:00
|
|
|
- llvm-toolchain-xenial-5.0
|
|
|
|
- llvm-toolchain-xenial-6.0
|
2019-10-29 23:38:21 +01:00
|
|
|
- llvm-toolchain-xenial-7
|
|
|
|
- llvm-toolchain-xenial-8
|
|
|
|
|
2017-11-05 12:46:04 +01:00
|
|
|
|
2015-10-06 12:28:18 +02:00
|
|
|
matrix:
|
|
|
|
include:
|
2019-10-29 23:38:21 +01:00
|
|
|
# Clang builds
|
2015-10-06 12:28:18 +02:00
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
2017-11-05 12:46:04 +01:00
|
|
|
addons:
|
2019-10-29 23:38:21 +01:00
|
|
|
apt:
|
|
|
|
sources: *all_sources
|
|
|
|
packages: ['clang-3.8']
|
|
|
|
env: COMPILER='clang++-3.8' CPP14=1
|
2015-10-06 12:28:18 +02:00
|
|
|
|
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
2017-11-05 12:46:04 +01:00
|
|
|
addons:
|
2015-10-06 12:28:18 +02:00
|
|
|
apt:
|
2017-11-05 12:46:04 +01:00
|
|
|
sources: *all_sources
|
2019-10-29 23:38:21 +01:00
|
|
|
packages: ['clang-3.8', 'lcov']
|
|
|
|
env: COMPILER='clang++-3.8' CPP14=1 EXAMPLES=1 COVERAGE=1 EXTRAS=1
|
2015-10-06 12:28:18 +02:00
|
|
|
|
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
2017-11-05 12:46:04 +01:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: *all_sources
|
2018-03-06 15:38:22 +01:00
|
|
|
packages: ['clang-3.9']
|
2019-10-29 23:38:21 +01:00
|
|
|
env: COMPILER='clang++-3.9' CPP14=1
|
2015-10-06 12:28:18 +02:00
|
|
|
|
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
2017-11-05 12:46:04 +01:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: *all_sources
|
2018-03-06 15:38:22 +01:00
|
|
|
packages: ['clang-4.0']
|
2019-10-29 23:38:21 +01:00
|
|
|
env: COMPILER='clang++-4.0' CPP14=1
|
2015-10-06 12:28:18 +02:00
|
|
|
|
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
2017-11-05 12:46:04 +01:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: *all_sources
|
2018-03-06 15:38:22 +01:00
|
|
|
packages: ['clang-5.0']
|
2019-10-29 23:38:21 +01:00
|
|
|
env: COMPILER='clang++-5.0' CPP14=1
|
2015-10-06 12:28:18 +02:00
|
|
|
|
2018-05-05 10:39:55 +02:00
|
|
|
|
2017-02-07 11:56:34 +01:00
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
2017-11-05 12:46:04 +01:00
|
|
|
addons:
|
|
|
|
apt:
|
2019-10-29 23:38:21 +01:00
|
|
|
sources: *all_sources
|
|
|
|
packages: ['clang-6.0', 'libstdc++-8-dev']
|
|
|
|
env: COMPILER='clang++-6.0' CPP17=1
|
2017-02-07 11:56:34 +01:00
|
|
|
|
2017-11-05 12:46:04 +01:00
|
|
|
|
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: *all_sources
|
2019-10-29 23:38:21 +01:00
|
|
|
packages: ['clang-8', 'libstdc++-8-dev']
|
|
|
|
env: COMPILER='clang++-8' CPP17=1 EXAMPLES=1 COVERAGE=1 EXTRAS=1
|
2017-11-05 12:46:04 +01:00
|
|
|
|
2019-10-29 23:38:21 +01:00
|
|
|
|
|
|
|
# GCC builds
|
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: *all_sources
|
|
|
|
packages: ['g++-5']
|
|
|
|
env: COMPILER='g++-5' CPP14=1
|
2015-10-06 12:28:18 +02:00
|
|
|
|
2017-04-20 22:47:05 +02:00
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
2019-10-29 23:38:21 +01:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: *all_sources
|
|
|
|
packages: ['g++-6']
|
2018-03-05 15:11:12 +01:00
|
|
|
env: COMPILER='g++-6' CPP14=1
|
2017-04-20 22:47:05 +02:00
|
|
|
|
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
2019-10-29 23:38:21 +01:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: *all_sources
|
|
|
|
packages: ['g++-7', 'lcov']
|
|
|
|
env: COMPILER='g++-7' CPP14=1 EXAMPLES=1 COVERAGE=1 EXTRAS=1
|
2017-04-20 22:47:05 +02:00
|
|
|
|
2018-03-05 15:11:12 +01:00
|
|
|
|
2020-01-25 09:52:13 +01:00
|
|
|
# Special builds, e.g. conan
|
|
|
|
- language: python
|
|
|
|
python:
|
|
|
|
- "3.7"
|
|
|
|
install:
|
|
|
|
- pip install conan-package-tools
|
|
|
|
env:
|
|
|
|
- CONAN_GCC_VERSIONS=8
|
|
|
|
- CONAN_DOCKER_IMAGE=conanio/gcc8
|
|
|
|
- CPP14=1
|
|
|
|
script:
|
|
|
|
- python .conan/build.py
|
2018-11-16 12:45:07 +01:00
|
|
|
|
2015-10-06 12:28:18 +02:00
|
|
|
before_script:
|
|
|
|
- export CXX=${COMPILER}
|
|
|
|
- cd ${TRAVIS_BUILD_DIR}
|
2020-09-08 15:53:08 +02:00
|
|
|
# We want to regenerate the amalgamated header if the extra tests
|
|
|
|
# are enabled.
|
|
|
|
- |
|
|
|
|
if [[ ${EXTRAS} -eq 1 ]]; then
|
|
|
|
python3 ./tools/scripts/generateAmalgamatedFiles.py
|
|
|
|
fi
|
2017-11-19 15:04:51 +01:00
|
|
|
|
2019-05-05 00:23:53 +02:00
|
|
|
- |
|
|
|
|
if [[ ${CPP17} -eq 1 ]]; then
|
|
|
|
export CPP_STANDARD=17
|
|
|
|
elif [[ ${CPP14} -eq 1 ]]; then
|
|
|
|
export CPP_STANDARD=14
|
|
|
|
else
|
2019-10-29 23:38:21 +01:00
|
|
|
travis_terminate 4;
|
2019-05-05 00:23:53 +02:00
|
|
|
fi
|
|
|
|
|
2017-11-25 16:58:29 +01:00
|
|
|
# Use Debug builds for running Valgrind and building examples
|
2020-02-21 21:15:45 +01:00
|
|
|
- cmake -H. -BBuild-Debug -DCMAKE_BUILD_TYPE=Debug -Wdev -DCATCH_USE_VALGRIND=${VALGRIND} -DCATCH_BUILD_EXAMPLES=${EXAMPLES} -DCATCH_ENABLE_COVERAGE=${COVERAGE} -DCATCH_BUILD_EXTRA_TESTS=${EXTRAS} -DCMAKE_CXX_STANDARD=${CPP_STANDARD} -DCMAKE_CXX_STANDARD_REQUIRED=On -DCMAKE_CXX_EXTENSIONS=OFF -DCATCH_DEVELOPMENT_BUILD=ON
|
2017-11-25 16:58:29 +01:00
|
|
|
# Don't bother with release build for coverage build
|
2020-02-21 21:15:45 +01:00
|
|
|
- cmake -H. -BBuild-Release -DCMAKE_BUILD_TYPE=Release -Wdev -DCMAKE_CXX_STANDARD=${CPP_STANDARD} -DCMAKE_CXX_STANDARD_REQUIRED=On -DCMAKE_CXX_EXTENSIONS=OFF -DCATCH_DEVELOPMENT_BUILD=ON
|
2017-11-25 16:58:29 +01:00
|
|
|
|
2013-08-05 12:40:33 +02:00
|
|
|
|
|
|
|
script:
|
2018-04-01 14:36:55 +02:00
|
|
|
- cd Build-Debug
|
|
|
|
- make -j 2
|
|
|
|
- CTEST_OUTPUT_ON_FAILURE=1 ctest -j 2
|
2017-11-25 16:58:29 +01:00
|
|
|
# Coverage collection does not work for OS X atm
|
2018-04-01 14:36:55 +02:00
|
|
|
- |
|
2018-03-05 15:11:12 +01:00
|
|
|
if [[ "${TRAVIS_OS_NAME}" == "linux" ]] && [[ "${COVERAGE}" == "1" ]]; then
|
2017-11-25 16:58:29 +01:00
|
|
|
make gcov
|
|
|
|
make lcov
|
|
|
|
bash <(curl -s https://codecov.io/bash) -X gcov || echo "Codecov did not collect coverage reports"
|
|
|
|
fi
|
2018-04-01 14:36:55 +02:00
|
|
|
- # Go to release build
|
|
|
|
- cd ../Build-Release
|
|
|
|
- make -j 2
|
|
|
|
- CTEST_OUTPUT_ON_FAILURE=1 ctest -j 2
|