Update TravisCI build to use Clang 3.7

This commit is contained in:
Arkshine 2016-03-20 22:58:56 +01:00
parent fdebeab612
commit 94599e9b4e

View File

@ -1,11 +1,16 @@
addons: addons:
apt: apt:
packages: packages:
- clang-3.7
- lib32stdc++6 - lib32stdc++6
- lib32z1-dev - lib32z1-dev
- libc6-dev-i386 - libc6-dev-i386
- linux-libc-dev
- gcc-multilib - gcc-multilib
- g++-multilib - g++-multilib
sources:
- llvm-toolchain-precise-3.7
- ubuntu-toolchain-r-test
language: cpp language: cpp
sudo: false sudo: false
compiler: compiler:
@ -17,5 +22,5 @@ before_script:
script: script:
- mkdir build && cd build - mkdir build && cd build
- PATH="~/.local/bin:$PATH" - PATH="~/.local/bin:$PATH"
- python ../configure.py --enable-optimize --no-mysql - CC=clang-3.7 CXX=clang-3.7 python ../configure.py --enable-optimize --no-mysql
- ambuild - ambuild