another try with multiline strings
This commit is contained in:
parent
66fc95c6f9
commit
9b82f79698
1 changed files with 13 additions and 6 deletions
19
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
19
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
|
@ -77,12 +77,19 @@ 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 "${SCRIPT_DIR}/phabtalk/phabtalk.py ${PHID} ${DIFF_ID} \
|
||||
--conduit-token ${CONDUIT_TOKEN} \
|
||||
--test-result-file ${TEST_REPORT} \
|
||||
--comment-file ${PHAB_LOG} \
|
||||
--host https://reviews.llvm.org/api/"
|
||||
/// send results to Phabricator
|
||||
sh '''
|
||||
set +x
|
||||
cat <<-EOF> ${PHAB_LOG}
|
||||
Log files: [[${RESULT_URL}/console-log.txt | console-log.txt]], [[${RESULT_URL}/CMakeCache.txt | CMakeCache.txt]]
|
||||
EOF
|
||||
'''
|
||||
sh '''${SCRIPT_DIR}/phabtalk/phabtalk.py "${PHID}" "${DIFF_ID}" \
|
||||
--conduit-token "${CONDUIT_TOKEN}" \
|
||||
--test-result-file "${TEST_REPORT}" \
|
||||
--comment-file "${PHAB_LOG}" \
|
||||
--host "https://reviews.llvm.org/api/"
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue