From a3ea825a11973f706a1926c4f5bad3ea9380414e Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Mon, 5 Feb 2018 11:16:49 +0000 Subject: [PATCH] Add build job for GCC 6 --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index 56e8fab5e..42497802f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -145,6 +145,14 @@ matrix: packages: ['g++-4.9', 'libbz2-dev', 'libxml2-dev', 'libzip-dev', 'liblua5.2-dev', 'libtbb-dev', 'libgdal-dev', 'libboost-all-dev', 'ccache'] env: CCOMPILER='gcc-4.9' CXXCOMPILER='g++-4.9' BUILD_TYPE='Release' + - os: linux + compiler: "gcc-6-release" + addons: &gcc49 + apt: + sources: ['ubuntu-toolchain-r-test'] + packages: ['g++-6', 'libbz2-dev', 'libxml2-dev', 'libzip-dev', 'liblua5.2-dev', 'libtbb-dev', 'libgdal-dev', 'libboost-all-dev', 'ccache'] + env: CCOMPILER='gcc-6' CXXCOMPILER='g++-6' BUILD_TYPE='Release' + - os: osx osx_image: xcode9.2 compiler: "mason-osx-release-node-8"