From 5622f41ca36d47d6a0cff4f79361719bcf5aca9d Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Wed, 12 May 2021 09:50:16 +0200 Subject: [PATCH] Do not throw error if robot test result is unstable Change-Id: Ide5136b35f8f3965a3ef716eaad6414a6d47cc90 Signed-off-by: garciadeblas --- 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 a119ecfa..98b00203 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -534,7 +534,7 @@ EOF""" stage("Archive Container Logs") { // Archive logs to containers_logs.txt archive_logs(remote) - if ( ! currentBuild.result.equals('UNSTABLE') && ! currentBuild.result.equals('FAILURE')) { + if ( ! currentBuild.result.equals('FAILURE') ) { stage_archive = keep_artifacts } else { println ("Systest test failed, throwing error") -- 2.17.1