diff options
author | James McCoy <jamessan@jamessan.com> | 2017-06-15 00:14:57 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-06-15 00:14:57 -0400 |
commit | a4825ebd5c7e31f8401dc62ca3ca832853a5c012 (patch) | |
tree | 746287f35e945d3f8a628d7c6adaf05d0906d59f | |
parent | 7918845215855814cf16b483fb0bec9cdad313d2 (diff) | |
download | rneovim-a4825ebd5c7e31f8401dc62ca3ca832853a5c012.tar.gz rneovim-a4825ebd5c7e31f8401dc62ca3ca832853a5c012.tar.bz2 rneovim-a4825ebd5c7e31f8401dc62ca3ca832853a5c012.zip |
ci: Bump clang version to 4.0
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 5b2bbe7946..45c2dcb832 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ env: # http://docs.travis-ci.com/user/speeding-up-the-build/#Paralellizing-your-build-on-one-VM - MAKE_CMD="make -j2" # Update PATH for pip. - - PATH="$(python2.7 -c 'import site; print(site.getuserbase())')/bin:/usr/lib/llvm-symbolizer-3.9/bin:$PATH" + - PATH="$(python2.7 -c 'import site; print(site.getuserbase())')/bin:/usr/lib/llvm-symbolizer-4.0/bin:$PATH" # Build directory for Neovim. - BUILD_DIR="$TRAVIS_BUILD_DIR/build" # Build directory for third-party dependencies. @@ -53,12 +53,12 @@ jobs: include: - stage: sanitizers os: linux - compiler: clang-3.9 + compiler: clang-4.0 env: > CLANG_SANITIZER=ASAN_UBSAN CMAKE_FLAGS="$CMAKE_FLAGS -DPREFER_LUA=ON" - os: linux - compiler: clang-3.9 + compiler: clang-4.0 env: CLANG_SANITIZER=TSAN - stage: normal builds os: linux @@ -98,13 +98,13 @@ addons: apt: sources: - ubuntu-toolchain-r-test - - llvm-toolchain-trusty-3.9 + - llvm-toolchain-trusty-4.0 packages: - autoconf - automake - apport - build-essential - - clang-3.9 + - clang-4.0 - cmake - cscope - g++-5-multilib @@ -115,7 +115,7 @@ addons: - language-pack-tr - libc6-dev-i386 - libtool - - llvm-3.9-dev + - llvm-4.0-dev - locales - pkg-config - unzip |