1
0
Fork 0

changed escaping of strings

This commit is contained in:
Christian Kühnel 2019-10-24 12:35:19 -07:00
parent ba0f07ffb4
commit 66fc95c6f9

View file

@ -30,7 +30,7 @@ pipeline {
stages {
stage("build info"){
steps {
echo 'Building diff ${DIFF_ID} with PHID ${PHID}'
echo "Building diff ${DIFF_ID} with PHID ${PHID}"
}
}
stage("git checkout"){
@ -77,7 +77,7 @@ pipeline {
// 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 "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} \
--conduit-token ${CONDUIT_TOKEN} \
--test-result-file ${TEST_REPORT} \