X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=jenkins%2Fci-pipelines%2Fci_stage_3.groovy;fp=jenkins%2Fci-pipelines%2Fci_stage_3.groovy;h=e5da90161a27a0ff435a56e045a9f5026a9d70c2;hb=b7c442c64ecc44e811c322b9b5f0851802073d8e;hp=2c8af42b07aa41dc3689e50caecfcafe7ea3e43b;hpb=972947c4155045d9d05f9a4a3cce081164c20dab;p=osm%2Fdevops.git diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index 2c8af42b..e5da9016 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -40,6 +40,14 @@ properties([ ]) ]) +def uninstall_osm( stackName ) { + sh """ + export OSM_USE_LOCAL_DEVOPS=true + export PATH=$PATH:/snap/bin + installers/full_install_osm.sh -y -s ${stackName} --test --nolxd --nodocker --nojuju --nohostports --nohostclient --uninstall + """ +} + node("${params.NODE}") { sh 'env' @@ -179,9 +187,8 @@ node("${params.NODE}") { } sh """ - export OSM_USE_LOCAL_DEVOPS=true export PATH=$PATH:/snap/bin - installers/full_install_osm.sh -y -s ${container_name} --nolxd --nodocker --nojuju --nohostports --nohostclient \ + installers/full_install_osm.sh -y -s ${container_name} --test --nolxd --nodocker --nojuju --nohostports --nohostclient \ ${commit_id} \ ${repo_distro} \ ${repo_base_url} \ @@ -240,15 +247,13 @@ node("${params.NODE}") { if ( params.DO_INSTALL ) { if (error) { if ( !params.SAVE_CONTAINER_ON_FAIL ) { - sh "docker stack rm ${container_name}" - sh "export PATH=$PATH:/snap/bin; juju destroy-controller ${container_name}" + uninstall_osm ${container_name} } throw error } else { if ( !params.SAVE_CONTAINER_ON_PASS ) { - sh "docker stack rm ${container_name}" - sh "export PATH=$PATH:/snap/bin; juju destroy-controller ${container_name}" + uninstall_osm ${container_name} } } }