Reduce amount of CI output on success

This commit is contained in:
Martin Hořeňovský 2017-11-22 16:11:35 +01:00
parent 401ad7a189
commit f052762c11
2 changed files with 4 additions and 3 deletions

View File

@ -209,7 +209,7 @@ before_script:
script:
- cd Build-Debug
- make -j 2
- ctest -V -j 2
- CTEST_OUTPUT_ON_FAILURE=1 ctest -j 2
- cd ../Build-Release
- make -j 2
- ctest -V -j 2
- CTEST_OUTPUT_ON_FAILURE=1 ctest -j 2

View File

@ -58,4 +58,5 @@ build:
test_script:
- cd Build
- ctest -V -j 2 -C %CONFIGURATION%
- set CTEST_OUTPUT_ON_FAILURE=1
- ctest -j 2 -C %CONFIGURATION%