added copying of the console log
This commit is contained in:
parent
b1d2dfed6f
commit
045a111be1
1 changed files with 2 additions and 4 deletions
4
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
4
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
|
@ -62,17 +62,15 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
echo "Console log is available at https://results.new.llvm-merge-guard.org/${BUILD_ID}"
|
echo "Console log is available at https://results.new.llvm-merge-guard.org/${BUILD_ID}"
|
||||||
dir("${env.TARGET_DIR}") {
|
dir("${env.TARGET_DIR}") {
|
||||||
// copy console log to result folder
|
// copy console log to result folder
|
||||||
bat "wget -qO console-log.txt http://jenkins-ui.jenkins.svc.cluster.local:8080/job/${JOB_BASE_NAME}/${BUILD_NUMBER}/consoleText"
|
powershell "Invoke-WebRequest -OutFile console-log.txt -uri http://jenkins.local:8080/job/${JOB_BASE_NAME}/${BUILD_NUMBER}/consoleText"
|
||||||
// TODO: move all file copy operations here
|
// TODO: move all file copy operations here
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in a new issue