Another attempt at a good travis build for clang++
This commit is contained in:
parent
5261fc2495
commit
10388b382c
15
.travis.yml
15
.travis.yml
@ -7,16 +7,21 @@ before_install:
|
|||||||
# Upgrade gcc
|
# Upgrade gcc
|
||||||
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
||||||
- sudo apt-get -qq update
|
- sudo apt-get -qq update
|
||||||
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
|
|
||||||
- if [ "$CXX" = "g++" ]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 98; fi
|
|
||||||
|
|
||||||
# Upgrade clang
|
- if [ "$CXX" == "g++" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
|
||||||
- sudo apt-get -qq install llvm-3.4 llvm-3.4-dev
|
- if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y ppa:h-rayflood/llvm; fi
|
||||||
- if [ "$CXX" = "clang++" ]; then export CXXFLAGS="$CXXFLAGS -stdlib=libc++"; fi
|
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
- sudo apt-get -qq install libwxgtk3.0-dev libwxgtk3.0-0 libssh2-1-dev
|
- sudo apt-get -qq install libwxgtk3.0-dev libwxgtk3.0-0 libssh2-1-dev
|
||||||
|
|
||||||
|
install:
|
||||||
|
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
|
||||||
|
- if [ "$CXX" = "g++" ]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 98; fi
|
||||||
|
|
||||||
|
#clang
|
||||||
|
- if [ "$CXX" == "clang++" ]; then sudo apt-get install --allow-unauthenticated -qq clang-3.4; fi
|
||||||
|
- if [ "$CXX" == "clang++" ]; then export CXX="clang++-3.4"; fi
|
||||||
|
|
||||||
# Build with both gcc and clang
|
# Build with both gcc and clang
|
||||||
compiler:
|
compiler:
|
||||||
- gcc
|
- gcc
|
||||||
|
Loading…
Reference in New Issue
Block a user