From f57f96f1901431c1d8db9cfa47198fce2326d8ef Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 25 Apr 2017 12:10:04 +0100 Subject: [PATCH] Removed pre-C++11 versions of Clang (3.4) and GCC (4.4) --- .travis.yml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.travis.yml b/.travis.yml index 278ea40b..277431a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,19 +5,6 @@ matrix: include: # 1/ Linux Clang Builds - - os: linux - compiler: clang - addons: &clang34 - apt: - sources: ['llvm-toolchain-precise', 'ubuntu-toolchain-r-test'] - packages: ['clang'] - env: COMPILER='clang++' BUILD_TYPE='Release' - - - os: linux - compiler: clang - addons: *clang34 - env: COMPILER='clang++' BUILD_TYPE='Debug' - - os: linux compiler: clang addons: &clang35 @@ -75,20 +62,6 @@ matrix: # 2/ Linux GCC Builds - - os: linux - compiler: gcc - addons: &gcc44 - apt: - sources: ['ubuntu-toolchain-r-test'] - packages: ['g++-4.4'] - env: COMPILER='g++-4.4' BUILD_TYPE='Release' - - - os: linux - compiler: gcc - addons: *gcc44 - env: COMPILER='g++-4.4' BUILD_TYPE='Debug' - - - os: linux compiler: gcc addons: &gcc47