From 74a5a24e927a17266f7cb6f3df014834222bbe55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Mon, 27 Jan 2020 16:24:45 +0100 Subject: [PATCH] changed ErrorAction --- Jenkins/Phabricator-windows-pipeline/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkins/Phabricator-windows-pipeline/Jenkinsfile b/Jenkins/Phabricator-windows-pipeline/Jenkinsfile index 527ad38..1b0093a 100644 --- a/Jenkins/Phabricator-windows-pipeline/Jenkinsfile +++ b/Jenkins/Phabricator-windows-pipeline/Jenkinsfile @@ -97,8 +97,8 @@ pipeline { Invoke-WebRequest -OutFile console-log.txt -uri "http://jenkins.local:8080/job/${JOB_BASE_NAME}/${BUILD_NUMBER}/consoleText" -ErrorAction "Continue" Write-Host "Copying build artefacts..." - Copy-Item "${LLVM_DIR}\\build\\CMakeCache.txt" -ErrorAction=Continue - Copy-Item "${LLVM_DIR}\\build\\test-results.xml" -ErrorAction=Continue + Copy-Item "${LLVM_DIR}\\build\\CMakeCache.txt" -ErrorAction SilentlyContinue + Copy-Item "${LLVM_DIR}\\build\\test-results.xml" -ErrorAction SilentlyContinue Write-Host "Uploading results to GCS..." \$ErrorActionPreference = 'SilentlyContinue'