From 85144c378f7c1e2b87da4a43341309ef97567890 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 4 Dec 2017 02:22:05 +0300 Subject: [PATCH] Added support for Clang 5.0. Fixes #365 (#388) --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 08bce95cc..a99004e06 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,8 @@ matrix: os: linux - env: SCRIPT=test CLANG=3.8 os: linux + - env: SCRIPT=test CLANG=5.0 + os: linux - env: SCRIPT=lint CLANG=3.9 os: linux @@ -28,7 +30,7 @@ before_install: if [ "$TRAVIS_OS_NAME" = "linux" ]; then wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-add-repository "deb http://apt.llvm.org/precise/ llvm-toolchain-precise-$CLANG main" + sudo apt-add-repository "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-$CLANG main" sudo apt-get update sudo apt-cache search clang sudo apt-get install -f -y --force-yes clang-$CLANG lldb-$CLANG