fix for variables
This commit is contained in:
parent
679ad9ba23
commit
be9775f82d
1 changed files with 3 additions and 3 deletions
6
Jenkins/master-pipeline/Jenkinsfile
vendored
6
Jenkins/master-pipeline/Jenkinsfile
vendored
|
@ -56,10 +56,10 @@ pipeline {
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
sh 'echo "Console log is available at https://results.new.llvm-mgerge-guards/${BUILD_ID}"'
|
sh "echo Console log is available at https://results.new.llvm-mgerge-guards/${env.BUILD_ID}"
|
||||||
dir('${env.TARGET_DIR}') {
|
dir("${env.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/${env.JOB_BASE_NAME}/${env.BUILD_NUMBER}/consoleText"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue