From 5849bbb8c0b6d9c8732e707f463604d58bec0713 Mon Sep 17 00:00:00 2001 From: Mike Marchetti Date: Mon, 24 Sep 2018 15:20:51 -0400 Subject: [PATCH] Archive when not unstable Change-Id: Ie75222afea5a5776515a8cd5743e22662ed22376 Signed-off-by: Mike Marchetti --- jenkins/ci-pipelines/ci_stage_3.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } } -- 2.25.1