Skip to content
Snippets Groups Projects
Commit 046b6665 authored by Mike Marchetti's avatar Mike Marchetti
Browse files

archive only on smoke success


Change-Id: I03ddd769d387af7d8085ca21e946aef7d63ef58c
Signed-off-by: default avatarMike Marchetti <mmarchetti@sandvine.com>
parent 37c3f51c
No related branches found
No related tags found
No related merge requests found
......@@ -235,7 +235,10 @@ node("${params.NODE}") {
stage("Smoke") {
run_systest(container_name,container_name,"smoke")
// archive smoke success until stage_4 is ready
stage_archive = params.SAVE_ARTIFACTS_ON_SMOKE_SUCCESS
if ( currentBuild.result.equals('SUCCESS') ) {
stage_archive = params.SAVE_ARTIFACTS_ON_SMOKE_SUCCESS
}
}
}
......
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