Meridio: move cleanup stage in e2e tests 14/15814/1
authorLionel Jouin <lionel.jouin@est.tech>
Wed, 26 Oct 2022 11:14:51 +0000 (13:14 +0200)
committerLionel Jouin <lionel.jouin@est.tech>
Wed, 26 Oct 2022 11:14:51 +0000 (13:14 +0200)
The Next stage tried to read a file which was no longer existing due to the cleanup stage, the cleanup stage has then be moved after the next one.

Change-Id: I4c76abee48a3242b50915778bcffd191993db2a2

jjb/nsm/e2e.Jenkinsfile

index 343205098bb24e754232bf238e92df22141a3400..8343ec7ad1f9fd4a745b02e190ad930fa7751a7b 100644 (file)
@@ -53,15 +53,15 @@ node('nordix-nsm-build-ubuntu1804') {
                 }
             }
         }
-        stage('Cleanup') {
-            Cleanup()
-        }
         stage('Report') {
             Report().call()
         }
         stage('Next') {
             Next(next).call()
         }
+        stage('Cleanup') {
+            Cleanup()
+        }
     }
 }