From: Manuel Nickschas Date: Thu, 5 Feb 2015 22:26:52 +0000 (+0100) Subject: Disable Clang for building against Qt4 in the CI X-Git-Tag: 0.12-beta1~35 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=b9b043e616f2909e75c74a8134bd3165ebc14b96;hp=-c Disable Clang for building against Qt4 in the CI Qt4 does not support C++11 features when building with Clang, so the Travis CI fails. This commit should disable this combination in the build matrix. --- b9b043e616f2909e75c74a8134bd3165ebc14b96 diff --git a/.travis.yml b/.travis.yml index defbb623..476319e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,4 +26,9 @@ script: - cd build - if [ "$QT_VERSION" = "qt4" ]; then cmake ..; fi - if [ "$QT_VERSION" = "qt5" ]; then source /opt/qt52/bin/qt52-env.sh && cmake -DUSE_QT5=ON ..; fi - - make \ No newline at end of file + - make + +matrix: + exclude: + - compiler: clang + env: QT_VERSION=qt4