Jenkinsfile: 2.3.3 will ship with Qt 5.
authorMarkus Goetz <markus@woboq.com>
Wed, 21 Jun 2017 09:59:24 +0000 (11:59 +0200)
committerMarkus Goetz <markus@woboq.com>
Wed, 21 Jun 2017 09:59:24 +0000 (11:59 +0200)
This should fix the current CI run too

Jenkinsfile

index 090831de44515c8d48188e859f324ef4f01468ca..01101cc3a8096bd7fee2fbbb25a8eb09872fa8a3 100644 (file)
@@ -5,22 +5,6 @@ node('CLIENT') {
         checkout scm
         sh '''git submodule update --init'''
 
-    stage 'Qt4'
-        sh '''rm -rf build
-               mkdir build
-               cd build
-               cmake -DUNIT_TESTING=1 -DBUILD_WITH_QT4=ON ..
-               make -j4
-               ctest --output-on-failure'''
-
-    stage 'Qt4 - clang'
-        sh '''rm -rf build
-               mkdir build
-               cd build
-               cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DUNIT_TESTING=1 -DBUILD_WITH_QT4=ON ..
-               make -j4
-               ctest --output-on-failure'''
-
     stage 'Qt5'
         sh '''rm -rf build
                mkdir build