Skip to content

Commit 2110f04

Browse files
committed
Update CI to use Ubuntu Xenial and test with g++ 8
1 parent c623a22 commit 2110f04

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

.travis.yml

+15-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ language: cpp
22
matrix:
33
include:
44
# - os: linux
5-
# dist: trusty
5+
# dist: xenial
66
# compiler: clang
77
# before_install:
88
# - sudo add-apt-repository ppa:kubuntu-ppa/backports -y
@@ -19,7 +19,7 @@ matrix:
1919
# - g++ -v
2020

2121
- os: linux
22-
dist: trusty
22+
dist: xenial
2323
compiler: gcc
2424
env:
2525
- COMPILER=g++-4.8
@@ -28,7 +28,7 @@ matrix:
2828
sources: ['ubuntu-toolchain-r-test']
2929
packages: [g++-4.8, valgrind]
3030
- os: linux
31-
dist: trusty
31+
dist: xenial
3232
compiler: gcc
3333
env:
3434
- COMPILER=g++-4.9
@@ -37,7 +37,7 @@ matrix:
3737
sources: ['ubuntu-toolchain-r-test']
3838
packages: [g++-4.9, valgrind]
3939
- os: linux
40-
dist: trusty
40+
dist: xenial
4141
compiler: gcc
4242
env:
4343
- COMPILER=g++-5
@@ -46,7 +46,7 @@ matrix:
4646
sources: ['ubuntu-toolchain-r-test']
4747
packages: [g++-5, valgrind]
4848
- os: linux
49-
dist: trusty
49+
dist: xenial
5050
compiler: gcc
5151
env:
5252
- COMPILER=g++-6
@@ -55,14 +55,23 @@ matrix:
5555
sources: ['ubuntu-toolchain-r-test']
5656
packages: [g++-6, valgrind]
5757
- os: linux
58-
dist: trusty
58+
dist: xenial
5959
compiler: gcc
6060
env:
6161
- COMPILER=g++-7
6262
addons:
6363
apt:
6464
sources: ['ubuntu-toolchain-r-test']
6565
packages: [g++-7, valgrind]
66+
- os: linux
67+
dist: xenial
68+
compiler: gcc
69+
env:
70+
- COMPILER=g++-8
71+
addons:
72+
apt:
73+
sources: ['ubuntu-toolchain-r-test']
74+
packages: [g++-8, valgrind]
6675

6776
before_install:
6877
- sudo apt-get -qq update

0 commit comments

Comments
 (0)