diff --git a/Jenkinsfile b/Jenkinsfile index 3ce150c..1133afa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,11 +11,25 @@ pipeline { echo "flag: ${params.userFlag}" } } - post { - always { - echo "this is always printed at the end of this stage" - } - } + post { + always { + 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 {