From ba751f8c351d6dbbe3575c176122a48a6e4acf74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Mon, 10 Oct 2016 18:22:56 +0200 Subject: [PATCH] Added Travis target for g++ 6. --- .travis.yml | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index d3409a1..ceff177 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,21 +1,28 @@ # Use container-based distribution sudo: false language: c++ +addons: + apt: + sources: + - ubuntu-toolchain-r-test + - boost-latest + packages: + - libboost-program-options1.55-dev + - libboost-iostreams1.55-dev + - libboost-system1.55-dev + - libboost-filesystem1.55-dev matrix: include: - - compiler: gcc + - env: COMPILER=g++-5 addons: apt: - sources: - - ubuntu-toolchain-r-test - - boost-latest packages: - g++-5 - - libboost-program-options1.55-dev - - libboost-iostreams1.55-dev - - libboost-system1.55-dev - - libboost-filesystem1.55-dev - env: COMPILER=g++-5 + - env: COMPILER=g++-6 + addons: + apt: + packages: + - g++-6 script: - git submodule init - git submodule update