From ef55626296db745f382629ba0c31ef58e2f3b58a Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Tue, 11 Apr 2017 20:37:38 +0200 Subject: [PATCH] :construction_worker: added Clang 3.9-5.0 Taken from https://github.com/travis-ci/docs-travis-ci-com/pull/746/files. --- .travis.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8b9ba53ee..f69283b0d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -207,6 +207,27 @@ matrix: env: LLVM_VERSION=3.8.1 compiler: clang + - os: linux + addons: + apt: + sources: llvm-toolchain-trusty-3.9 + packages: clang-3.9 + env: COMPILER=clang++-3.9 + + - os: linux + addons: + apt: + sources: llvm-toolchain-trusty-4.0 + packages: clang-4.0 + env: COMPILER=clang++-4.0 + + - os: linux + addons: + apt: + sources: llvm-toolchain-trusty + packages: clang-5.0 + env: COMPILER=clang++-5.0 + ##################### # installation step # #####################