travis test, 9

This commit is contained in:
filux 2015-12-27 16:19:01 +01:00
parent 06a5833f66
commit 4a0bd2d2d8
1 changed files with 3 additions and 3 deletions

View File

@ -31,10 +31,10 @@ matrix:
compiler: clang
env: LLVM_VERSION="native" # broken compiler
- os: osx
compiler: gcc # broken compiler
compiler: gcc # unsupported compiler
- os: osx
compiler: clang
env: LLVM_VERSION="3.7" # missing configuration here
env: LLVM_VERSION="3.7" # missing compiler by brew
allow_failures:
- os: osx # remove when native clang will work
@ -61,7 +61,7 @@ before_install:
- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$CXX" == "clang++" ] && [ "$LLVM_VERSION" != "native" ]; then sudo apt-get --allow-unauthenticated -qq install clang-${LLVM_VERSION}; fi
- if [ "$CXX" == "clang++" ] && [ "$LLVM_VERSION" != "native" ]; then export CXX="clang++-${LLVM_VERSION}" CC="clang-${LLVM_VERSION}"; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo mk/linux/setupBuildDeps.sh --quiet; fi # INSTALL OUR DEPENDENCIES
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install sdl2 lua freetype ftgl libogg glew libvorbis cppunit fribidi miniupnpc wxmac; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install sdl2 lua freetype ftgl libogg glew libvorbis cppunit glib fribidi miniupnpc wxmac; fi
- $CXX --version
- cmake --version
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo ./.travis-before_install.sh; fi