Skip to content

Commit

Permalink
Update CI to use Ubuntu Xenial and test with g++ 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Crayon2000 committed May 13, 2021
1 parent c623a22 commit 2110f04
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: cpp
matrix:
include:
# - os: linux
# dist: trusty
# dist: xenial
# compiler: clang
# before_install:
# - sudo add-apt-repository ppa:kubuntu-ppa/backports -y
Expand All @@ -19,7 +19,7 @@ matrix:
# - g++ -v

- os: linux
dist: trusty
dist: xenial
compiler: gcc
env:
- COMPILER=g++-4.8
Expand All @@ -28,7 +28,7 @@ matrix:
sources: ['ubuntu-toolchain-r-test']
packages: [g++-4.8, valgrind]
- os: linux
dist: trusty
dist: xenial
compiler: gcc
env:
- COMPILER=g++-4.9
Expand All @@ -37,7 +37,7 @@ matrix:
sources: ['ubuntu-toolchain-r-test']
packages: [g++-4.9, valgrind]
- os: linux
dist: trusty
dist: xenial
compiler: gcc
env:
- COMPILER=g++-5
Expand All @@ -46,7 +46,7 @@ matrix:
sources: ['ubuntu-toolchain-r-test']
packages: [g++-5, valgrind]
- os: linux
dist: trusty
dist: xenial
compiler: gcc
env:
- COMPILER=g++-6
Expand All @@ -55,14 +55,23 @@ matrix:
sources: ['ubuntu-toolchain-r-test']
packages: [g++-6, valgrind]
- os: linux
dist: trusty
dist: xenial
compiler: gcc
env:
- COMPILER=g++-7
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: [g++-7, valgrind]
- os: linux
dist: xenial
compiler: gcc
env:
- COMPILER=g++-8
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: [g++-8, valgrind]

before_install:
- sudo apt-get -qq update
Expand Down

0 comments on commit 2110f04

Please sign in to comment.