From b9b043e616f2909e75c74a8134bd3165ebc14b96 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Thu, 5 Feb 2015 23:26:52 +0100 Subject: [PATCH] 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. --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- 2.20.1