From: Mike Marchetti Date: Fri, 17 Aug 2018 18:43:50 +0000 (-0400) Subject: Avoid deleting of lxc container when not installing X-Git-Tag: v5.0.0~127 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=1f405cf638cf081ca53777336eefb7e245c6ca92;hp=515503e249283b6e0a2ccd5b4c134fa7a5572647;p=osm%2Fdevops.git Avoid deleting of lxc container when not installing Change-Id: Icea51817f0c0815ada1abd4ff8690ec0b4b03b5a Signed-off-by: Mike Marchetti --- diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index 52aa3b2f..2e2bf087 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -235,15 +235,17 @@ node("${params.NODE}") { finally { sh "docker stop ${http_server_name}" - if (error) { - if ( !params.SAVE_CONTAINER_ON_FAIL ) { - sh "lxc delete ${container_name} --force" + if ( params.DO_INSTALL ) { + if (error) { + if ( !params.SAVE_CONTAINER_ON_FAIL ) { + sh "lxc delete ${container_name} --force" + } + throw error } - throw error - } - else { - if ( !params.SAVE_CONTAINER_ON_PASS ) { - sh "lxc delete ${container_name} --force" + else { + if ( !params.SAVE_CONTAINER_ON_PASS ) { + sh "lxc delete ${container_name} --force" + } } } }