Vadim Surkov 7 years ago
parent
commit
38e971baf0
1 changed files with 11 additions and 0 deletions
  1. 11 0
      Jenkinsfile

+ 11 - 0
Jenkinsfile

@@ -20,6 +20,17 @@ pipeline {
         echo "Scaling $service by $scale"
         sh 'pwd'
       }
+      post {
+        always {
+          echo "Step always"
+        }
+        changed {
+          echo "Step change"
+        }
+        failure {
+          echo "Step failure"
+        }
+      }
     }
   }
   post {