diff options
author | James McCoy <jamessan@jamessan.com> | 2017-04-01 20:09:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-01 20:09:26 -0400 |
commit | a7569b50b769b61a2f10a024fab040443bd3e906 (patch) | |
tree | bc1a146b3866e101fb8e033bb920455ab1a6989d | |
parent | 1ad564400649fde0394455df3ef130fb4bdf291a (diff) | |
parent | 4bae3f48fefab86c45a8e2bee8e56bc6872c355a (diff) | |
download | rneovim-a7569b50b769b61a2f10a024fab040443bd3e906.tar.gz rneovim-a7569b50b769b61a2f10a024fab040443bd3e906.tar.bz2 rneovim-a7569b50b769b61a2f10a024fab040443bd3e906.zip |
Merge pull request #6338 from jamessan/llvm-update
Bump LLVM to 3.9
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index fe58858e5b..14899a1289 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.8/bin:$PATH" + - PATH="$(python2.7 -c 'import site; print(site.getuserbase())')/bin:/usr/lib/llvm-symbolizer-3.9/bin:$PATH" # Build directory for Neovim. - BUILD_DIR="$TRAVIS_BUILD_DIR/build" # Build directory for third-party dependencies. @@ -69,10 +69,10 @@ matrix: compiler: gcc-5 -m32 env: BUILD_32BIT=ON - os: linux - compiler: clang-3.8 + compiler: clang-3.9 env: CLANG_SANITIZER=ASAN_UBSAN - os: linux - compiler: clang-3.8 + compiler: clang-3.9 env: CLANG_SANITIZER=TSAN - os: osx compiler: clang @@ -95,13 +95,13 @@ addons: apt: sources: - ubuntu-toolchain-r-test - - llvm-toolchain-precise-3.8 + - llvm-toolchain-trusty-3.9 packages: - autoconf - automake - apport - build-essential - - clang-3.8 + - clang-3.9 - cmake - cscope - g++-5-multilib @@ -111,7 +111,7 @@ addons: - gdb - libc6-dev-i386 - libtool - - llvm-3.8-dev + - llvm-3.9-dev - pkg-config - unzip - valgrind |