From: garciadeblas Date: Wed, 12 May 2021 07:50:16 +0000 (+0200) Subject: Do not throw error if robot test result is unstable X-Git-Tag: release-v10.0-start~8 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fdevops.git;a=commitdiff_plain;h=refs%2Fchanges%2F89%2F10789%2F2 Do not throw error if robot test result is unstable Change-Id: Ide5136b35f8f3965a3ef716eaad6414a6d47cc90 Signed-off-by: garciadeblas --- 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")