diff options
author | James McCoy <jamessan@jamessan.com> | 2017-06-15 11:14:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-15 11:14:16 +0000 |
commit | 8b976c413e949cb00338f0055104488895178f8c (patch) | |
tree | e4edc8ac63b04a5fbfc137d4bc3a1b2ddfd5ba7b | |
parent | 6efe84af6813f853d3ef0a60a86b4caa020bc313 (diff) | |
parent | a4825ebd5c7e31f8401dc62ca3ca832853a5c012 (diff) | |
download | rneovim-8b976c413e949cb00338f0055104488895178f8c.tar.gz rneovim-8b976c413e949cb00338f0055104488895178f8c.tar.bz2 rneovim-8b976c413e949cb00338f0055104488895178f8c.zip |
Merge pull request #6896 from jamessan/clang-bump
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 |