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

+ 19 - 19
Jenkinsfile

@@ -21,25 +21,25 @@ pipeline {
         sh 'ls *.meme'
       }
     }
-    post {
-      always {
-        echo "It's always good 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"
-      }
+  }
+  post {
+    always {
+      echo "It's always good 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"
     }
   }
 }