moved copying of results to post section
This commit is contained in:
parent
cbf1bee7da
commit
ac9c89475c
1 changed files with 2 additions and 2 deletions
4
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
4
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
|
@ -49,8 +49,6 @@ pipeline {
|
||||||
stage('arc patch') {
|
stage('arc patch') {
|
||||||
steps {
|
steps {
|
||||||
sh "python3 ${SCRIPT_DIR}/phabtalk/apply_patch.py"
|
sh "python3 ${SCRIPT_DIR}/phabtalk/apply_patch.py"
|
||||||
// keep a copy of the answer from Phabricator for debugging
|
|
||||||
sh "cp ${DIFF_JSON} ${TARGET_DIR}"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('CMake') {
|
stage('CMake') {
|
||||||
|
@ -75,6 +73,8 @@ pipeline {
|
||||||
dir("${TARGET_DIR}") {
|
dir("${TARGET_DIR}") {
|
||||||
// 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"
|
||||||
|
// keep a copy of the answer from Phabricator for debugging
|
||||||
|
sh "cp ${DIFF_JSON} ."
|
||||||
}
|
}
|
||||||
/// send results to Phabricator
|
/// send results to Phabricator
|
||||||
sh '''
|
sh '''
|
||||||
|
|
Loading…
Reference in a new issue