changed escaping of strings
This commit is contained in:
parent
ba0f07ffb4
commit
66fc95c6f9
1 changed files with 2 additions and 2 deletions
4
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
4
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
|
@ -30,7 +30,7 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage("build info"){
|
stage("build info"){
|
||||||
steps {
|
steps {
|
||||||
echo 'Building diff ${DIFF_ID} with PHID ${PHID}'
|
echo "Building diff ${DIFF_ID} with PHID ${PHID}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("git checkout"){
|
stage("git checkout"){
|
||||||
|
@ -77,7 +77,7 @@ pipeline {
|
||||||
// copy console log to result folder
|
// copy console log to result folder
|
||||||
sh "wget -qO console-log.txt http://jenkins-ui.jenkins.svc.cluster.local:8080/job/${JOB_BASE_NAME}/${BUILD_NUMBER}/consoleText"
|
sh "wget -qO console-log.txt http://jenkins-ui.jenkins.svc.cluster.local:8080/job/${JOB_BASE_NAME}/${BUILD_NUMBER}/consoleText"
|
||||||
}
|
}
|
||||||
sh "echo Log files: [[${RESULT_URL}/console-log.txt | console-log.txt]], [[${RESULT_URL}/CMakeCache.txt | CMakeCache.txt]] > ${PHAB_LOG}"
|
sh 'echo "Log files: [[${RESULT_URL}/console-log.txt | console-log.txt]], [[${RESULT_URL}/CMakeCache.txt | CMakeCache.txt]]" > ${PHAB_LOG}'
|
||||||
sh "${SCRIPT_DIR}/phabtalk/phabtalk.py ${PHID} ${DIFF_ID} \
|
sh "${SCRIPT_DIR}/phabtalk/phabtalk.py ${PHID} ${DIFF_ID} \
|
||||||
--conduit-token ${CONDUIT_TOKEN} \
|
--conduit-token ${CONDUIT_TOKEN} \
|
||||||
--test-result-file ${TEST_REPORT} \
|
--test-result-file ${TEST_REPORT} \
|
||||||
|
|
Loading…
Reference in a new issue