Vadim Surkov 7 years ago
parent
commit
7bd2dec1f2
1 changed files with 19 additions and 0 deletions
  1. 19 0
      Jenkinsfile

+ 19 - 0
Jenkinsfile

@@ -21,5 +21,24 @@ pipeline {
         sh 'ls *.meme'
       }
     }
+    post {
+      always {
+        echo 'It's always goot to be here.'
+      }
+      changed {
+        echo 'Something changed...'
+      }
+      failure {
+        echo 'Oh, snap. It's failed again'
+      }
+      success {
+        echo 'Fine !!! It's SUCCESS !!!'
+      }
+      unstable {
+        echo 'Unstable ....'
+      }
+      aborted {
+        echo 'Hmmm... It's aborted'
+      }
   }
 }