From: Lionel Jouin Date: Wed, 26 Oct 2022 11:14:51 +0000 (+0200) Subject: Meridio: move cleanup stage in e2e tests X-Git-Url: https://gerrit.nordix.org/gitweb?a=commitdiff_plain;h=f77e9e2524ea69bb345c55eb15160ca8a310d7fb;p=infra%2Fcicd.git 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 --- diff --git a/jjb/nsm/e2e.Jenkinsfile b/jjb/nsm/e2e.Jenkinsfile index 343205098..8343ec7ad 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() + } } }