post actions
jenkinsfiles_play/declarative_branch There was a failure building this commit Details

declarative_branch
Denes Matetelki 6 years ago
parent 14fd830b65
commit 016f601c71

16
Jenkinsfile vendored

@ -13,9 +13,23 @@ pipeline {
}
post {
always {
echo "this is always printed at the end of this stage"
echo 'One way or another, I have finished'
}
success {
echo 'I succeeeded!'
}
unstable {
echo 'I am unstable :/'
}
failure {
echo 'I failed :('
}
changed {
echo 'Things were different before...'
}
}
}
post {
always {

Loading…
Cancel
Save