Try not logging ctest output to stdout

This commit is contained in:
2024-11-04 15:36:50 -08:00
parent db357e747d
commit 12c2d5eb95
Vendored
+1 -1
View File
@@ -11,7 +11,7 @@ def CleanBuildAndTest(String cmakeArgs) {
catchError {
sh '''
cd build
ctest --no-compress-output --test-output-size-passed 100000 --test-output-size-failed 100000 -T Test -j `nproc` --timeout 90
ctest --no-compress-output --test-output-size-passed 100000 --test-output-size-failed 100000 -T Test -j `nproc` --timeout 90 > /dev/null
zstd Testing/*/Test.xml
'''
}