From 12c2d5eb95242f4c812abc2a16383bb5a7fa6b4c Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Mon, 4 Nov 2024 15:36:50 -0800 Subject: [PATCH] Try not logging ctest output to stdout --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 76a1722..0ad167a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 ''' }