From 8061c241912cd2ba17b05c636ef683cecab2aab7 Mon Sep 17 00:00:00 2001 From: Anton Bachin Date: Sun, 4 Oct 2015 19:13:41 -0500 Subject: [PATCH] Added Clang++ 3.7 to test matrix. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9f59779..92ef961 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: cpp env: - - COMPILER="clang++-3.6" + - COMPILER="clang++-3.7" - COMPILER="g++-5" - COMPILER="g++-4.6" - COMPILER="g++-4.7" @@ -12,12 +12,14 @@ env: - COMPILER="clang++-3.3" - COMPILER="clang++-3.4" - COMPILER="clang++-3.5" + - COMPILER="clang++-3.6" before_script: - sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test - sudo add-apt-repository --yes ppa:h-rayflood/llvm - sudo add-apt-repository -y 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.5 main' - sudo add-apt-repository -y 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.6 main' + - sudo add-apt-repository -y 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.7 main' - sudo apt-get update -qq - sudo apt-get install --allow-unauthenticated $COMPILER - git clone https://github.com/CxxTest/cxxtest.git cxxtest-ro