Skip to content
Snippets Groups Projects
Commit 5622f41c authored by garciadeblas's avatar garciadeblas Committed by Mark Beierl
Browse files

Do not throw error if robot test result is unstable


Change-Id: Ide5136b35f8f3965a3ef716eaad6414a6d47cc90
Signed-off-by: default avatargarciadeblas <gerardo.garciadeblas@telefonica.com>
parent 4a7a23cd
No related branches found
Tags release-v11.0-start
No related merge requests found
......@@ -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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment