fixed missing quote
This commit is contained in:
parent
b3af22d838
commit
f3bc980e4f
1 changed files with 3 additions and 3 deletions
6
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
6
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
|
@ -76,10 +76,10 @@ pipeline {
|
|||
// Google Cloud Storage
|
||||
powershell """
|
||||
# get the console log
|
||||
Invoke-WebRequest -OutFile console-log.txt -uri http://jenkins.local:8080/job/${JOB_BASE_NAME}/${BUILD_NUMBER}/consoleText" -ErrorAction
|
||||
Invoke-WebRequest -OutFile console-log.txt -uri "http://jenkins.local:8080/job/${JOB_BASE_NAME}/${BUILD_NUMBER}/consoleText" -ErrorAction
|
||||
|
||||
Copy-Item ${LLVM_DIR}\\build\\CMakeCache.txt
|
||||
Copy-Item ${LLVM_DIR}\\build\\test-results.xml
|
||||
Copy-Item "${LLVM_DIR}\\build\\CMakeCache.txt"
|
||||
Copy-Item "${LLVM_DIR}\\build\\test-results.xml"
|
||||
|
||||
# upload files
|
||||
gsutil cp *.* gs://llvm-premerge-checks/results/${MY_BUILD_ID}/
|
||||
|
|
Loading…
Reference in a new issue