Skip to content

Commit

Permalink
.travis.yml: Add gcc 9 and compile with experimental C++20 support
Browse files Browse the repository at this point in the history
  • Loading branch information
t-b committed Aug 26, 2019
1 parent a015b78 commit a4eaaa5
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,15 +202,23 @@ matrix:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-8', 'ninja-build']

- os: linux
compiler: gcc
env: COMPILER=g++-9
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-9', 'ninja-build']

- os: linux
compiler: gcc
env:
- COMPILER=g++-8
- CXXFLAGS=-std=c++17
- COMPILER=g++-9
- CXXFLAGS=-std=c++2a
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-8', 'ninja-build']
packages: ['g++-9', 'ninja-build']

# Linux / Clang

Expand Down

0 comments on commit a4eaaa5

Please sign in to comment.