From 2110f0468901988ccc449bba7ccb53490ecc6afe Mon Sep 17 00:00:00 2001 From: Crayon Date: Thu, 13 May 2021 00:14:42 -0400 Subject: [PATCH] Update CI to use Ubuntu Xenial and test with g++ 8 --- .travis.yml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 363718bd9..626b10b05 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 @@ -19,7 +19,7 @@ matrix: # - g++ -v - os: linux - dist: trusty + dist: xenial compiler: gcc env: - COMPILER=g++-4.8 @@ -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 @@ -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 @@ -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 @@ -55,7 +55,7 @@ matrix: sources: ['ubuntu-toolchain-r-test'] packages: [g++-6, valgrind] - os: linux - dist: trusty + dist: xenial compiler: gcc env: - COMPILER=g++-7 @@ -63,6 +63,15 @@ matrix: 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