From: Mike Marchetti Date: Mon, 24 Sep 2018 19:20:51 +0000 (-0400) Subject: Archive when not unstable X-Git-Tag: v5.0.0~98 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=refs%2Fchanges%2F56%2F6556%2F1;p=osm%2Fdevops.git Archive when not unstable Change-Id: Ie75222afea5a5776515a8cd5743e22662ed22376 Signed-off-by: Mike Marchetti --- diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index 609708af..1c0c3675 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -236,7 +236,7 @@ node("${params.NODE}") { run_systest(container_name,container_name,"smoke") // archive smoke success until stage_4 is ready - if ( currentBuild.result.equals('SUCCESS') ) { + if ( ! currentBuild.result.equals('UNSTABLE') ) { stage_archive = params.SAVE_ARTIFACTS_ON_SMOKE_SUCCESS } }