Avoid deleting of lxc container when not installing 24/6424/1
authorMike Marchetti <mmarchetti@sandvine.com>
Fri, 17 Aug 2018 18:43:50 +0000 (14:43 -0400)
committerMike Marchetti <mmarchetti@sandvine.com>
Fri, 17 Aug 2018 18:43:50 +0000 (14:43 -0400)
Change-Id: Icea51817f0c0815ada1abd4ff8690ec0b4b03b5a
Signed-off-by: Mike Marchetti <mmarchetti@sandvine.com>
jenkins/ci-pipelines/ci_stage_3.groovy

index 52aa3b2..2e2bf08 100644 (file)
@@ -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"
+                }
             }
         }
     }