#247 -- Fix jenkinsfile
This commit is contained in:
parent
9274dfc3d0
commit
eb5ad650c9
18
Jenkinsfile
vendored
18
Jenkinsfile
vendored
@ -7,4 +7,22 @@ pipeline {
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
failure {
|
||||
emailext body: 'Check console output at $BUILD_URL to view the results. \n\n ${CHANGES} \n\n -------------------------------------------------- \n${BUILD_LOG, maxLines=100, escapeHtml=false}',
|
||||
to: "${EMAIL_TO}",
|
||||
subject: 'Build failed in Jenkins: $PROJECT_NAME - #$BUILD_NUMBER'
|
||||
}
|
||||
unstable {
|
||||
emailext body: 'Check console output at $BUILD_URL to view the results. \n\n ${CHANGES} \n\n -------------------------------------------------- \n${BUILD_LOG, maxLines=100, escapeHtml=false}',
|
||||
to: "${EMAIL_TO}",
|
||||
subject: 'Unstable build in Jenkins: $PROJECT_NAME - #$BUILD_NUMBER'
|
||||
}
|
||||
changed {
|
||||
emailext body: 'Check console output at $BUILD_URL to view the results.',
|
||||
to: "${EMAIL_TO}",
|
||||
subject: 'Jenkins build is back to normal: $PROJECT_NAME - #$BUILD_NUMBER'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user