From a41ac650ba4357348b26cf599968d32d36a2c677 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Tue, 26 May 2015 19:02:55 +0100 Subject: [PATCH] Revert "Use clang-3.5 for travis tests on linux" This reverts commit 41248c5728cf807939429a9f8a0c734e24c60c13. --- .travis.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 97a213aa..268046c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,6 @@ before_install: - if [ $TRAVIS_OS_NAME = linux ]; then sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y; sudo add-apt-repository ppa:boost-latest/ppa -y; - if [ "$CXX" = "clang++" ]; then - sudo add-apt-repository ppa:h-rayflood/llvm-upper -y; - fi; sudo apt-get update -qq; elif [ $TRAVIS_OS_NAME = osx ]; then brew update; @@ -20,8 +17,6 @@ install: - if [ $TRAVIS_OS_NAME = linux ]; then if [ "$CXX" = "clang++" ]; then sudo apt-get install -y libstdc++-4.9-dev; - sudo apt-get install -y clang-3.5; - export CXX=clang++-3.5; elif [ "$CXX" = "g++" ]; then sudo apt-get install -y g++-4.9; export CXX=g++-4.9;