From ecdc88f066f7b9e1bcb5c14159409b94d7faf7e0 Mon Sep 17 00:00:00 2001 From: Anton Bachin Date: Thu, 14 Sep 2017 13:32:41 -0500 Subject: [PATCH] Fix Travis build It seems that the g++4.5 package has been obsoleted: https://travis-ci.org/aantron/better-enums/jobs/271125909#L492 There also seems to be some kind of upstream problem with clang++3.5 when building in C++14 mode: https://travis-ci.org/aantron/better-enums/jobs/271125912#L1349 To unblock development, this commit removes the g++4.5 build, and allows the clang++3.5 build to fail for now. [skip appveyor] --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b19bd55..c228409 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,12 +8,15 @@ env: - COMPILER="g++-4.4" - COMPILER="g++-4.8" - COMPILER="g++-4.9" - - COMPILER="g++-4.5" - COMPILER="clang++-3.3" - COMPILER="clang++-3.4" - COMPILER="clang++-3.5" - COMPILER="clang++-3.6" +matrix: + allow_failures: + - env: COMPILER="clang++-3.5" + before_script: - sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test - sudo add-apt-repository --yes ppa:h-rayflood/llvm