.travis.yml: Add gcc 9 and compile with experimental C++20 support
This commit is contained in:
parent
a015b78e81
commit
a4eaaa56d1
1 changed files with 12 additions and 4 deletions
16
.travis.yml
16
.travis.yml
|
@ -204,13 +204,21 @@ matrix:
|
||||||
|
|
||||||
- os: linux
|
- os: linux
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
env:
|
env: COMPILER=g++-9
|
||||||
- COMPILER=g++-8
|
|
||||||
- CXXFLAGS=-std=c++17
|
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
sources: ['ubuntu-toolchain-r-test']
|
sources: ['ubuntu-toolchain-r-test']
|
||||||
packages: ['g++-8', 'ninja-build']
|
packages: ['g++-9', 'ninja-build']
|
||||||
|
|
||||||
|
- os: linux
|
||||||
|
compiler: gcc
|
||||||
|
env:
|
||||||
|
- COMPILER=g++-9
|
||||||
|
- CXXFLAGS=-std=c++2a
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
sources: ['ubuntu-toolchain-r-test']
|
||||||
|
packages: ['g++-9', 'ninja-build']
|
||||||
|
|
||||||
# Linux / Clang
|
# Linux / Clang
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue