From f77e9e2524ea69bb345c55eb15160ca8a310d7fb Mon Sep 17 00:00:00 2001 From: Lionel Jouin Date: Wed, 26 Oct 2022 13:14:51 +0200 Subject: [PATCH] Meridio: move cleanup stage in e2e tests 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jjb/nsm/e2e.Jenkinsfile b/jjb/nsm/e2e.Jenkinsfile index 34320509..8343ec7a 100644 --- a/jjb/nsm/e2e.Jenkinsfile +++ b/jjb/nsm/e2e.Jenkinsfile @@ -53,15 +53,15 @@ node('nordix-nsm-build-ubuntu1804') { } } } - stage('Cleanup') { - Cleanup() - } stage('Report') { Report().call() } stage('Next') { Next(next).call() } + stage('Cleanup') { + Cleanup() + } } } -- 2.25.1