From 5acf808e4881a7d0973b209ec0c32e97fd13e8fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Thu, 19 Dec 2019 15:19:48 +0100 Subject: [PATCH] using backslashes for paths --- Jenkins/master-windows-pipeline/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkins/master-windows-pipeline/Jenkinsfile b/Jenkins/master-windows-pipeline/Jenkinsfile index 8274494..b8ca6a2 100644 --- a/Jenkins/master-windows-pipeline/Jenkinsfile +++ b/Jenkins/master-windows-pipeline/Jenkinsfile @@ -84,7 +84,7 @@ pipeline { gsutil cp *.* gs://llvm-premerge-checks/results/${MY_BUILD_ID}/ """ } - junit "${LLVM_DIR}/build/*.xml" + junit "${LLVM_DIR}\\build\\test-results.xml" } }