From: Markus Goetz Date: Wed, 21 Jun 2017 10:18:21 +0000 (+0200) Subject: Jenkinsfile: Run verbose tests X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~710^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=bfe095b0651a2833978b93dd3b06b080c5ea3d8b;p=nextcloud-desktop.git Jenkinsfile: Run verbose tests --- diff --git a/Jenkinsfile b/Jenkinsfile index 993a7f26b..0833a5e6f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,7 @@ node('CLIENT') { cd build cmake -DUNIT_TESTING=1 -DWITH_TESTING=1 -DBUILD_WITH_QT4=OFF .. make -j4 - ctest --output-on-failure''' + ctest -V --output-on-failure''' stage 'Qt5 - clang' sh '''rm -rf build @@ -19,7 +19,7 @@ node('CLIENT') { cd build cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DUNIT_TESTING=1 -DWITH_TESTING=1 -DBUILD_WITH_QT4=OFF .. make -j4 - ctest --output-on-failure''' + ctest -V --output-on-failure''' stage 'Win32'