From a9a6d44cef653c4cadcfedd88bad42015f6c9f38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Fri, 20 Dec 2019 13:36:53 +0000 Subject: [PATCH] trying to ignore stderr in gsutil --- Jenkins/master-windows-pipeline/Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkins/master-windows-pipeline/Jenkinsfile b/Jenkins/master-windows-pipeline/Jenkinsfile index bf117dd..a8f40cb 100644 --- a/Jenkins/master-windows-pipeline/Jenkinsfile +++ b/Jenkins/master-windows-pipeline/Jenkinsfile @@ -80,7 +80,8 @@ pipeline { Copy-Item "${LLVM_DIR}\\build\\test-results.xml" # upload files - gsutil cp *.* gs://llvm-premerge-checks/results/${MY_BUILD_ID}/ + \$ErrorActionPreference = 'SilentlyContinue' + gsutil cp -Z *.* gs://llvm-premerge-checks/results/${MY_BUILD_ID}/ """ } // doesn't find junit results, not sure why...