1
0
Fork 0

another try with multiline strings

This commit is contained in:
Christian Kühnel 2019-10-24 12:41:40 -07:00
parent 66fc95c6f9
commit 9b82f79698

View file

@ -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/"
'''
}
}
}