1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-05 22:53:52 +00:00

Adding tests for C++17 (probably c++1z), gcc 7

This commit is contained in:
Henry Fredrick Schreiner 2018-04-03 11:58:20 +02:00 committed by Henry Schreiner
parent 368f2cd9a6
commit ede871c014

View File

@ -18,6 +18,10 @@ matrix:
include:
# Default clang
- compiler: clang
script:
- .ci/make_and_test.sh 11
- .ci/make_and_test.sh 14
- .ci/make_and_test.sh 17
# Check style/tidy
- compiler: clang
@ -55,16 +59,20 @@ matrix:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- g++-7
- curl
- lcov
install:
- export CC=gcc-6
- export CXX=g++-6
- export CC=gcc-7
- export CXX=g++-7
- DEPS_DIR="${TRAVIS_BUILD_DIR}/deps"
- cd $TRAVIS_BUILD_DIR
- ". .ci/build_lcov.sh"
- ".ci/run_codecov.sh"
script:
- .ci/make_and_test.sh 11
- .ci/make_and_test.sh 14
- .ci/make_and_test.sh 17
# GCC 4.7 and Conan
- compiler: gcc