X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=jenkins%2Fci-pipelines%2Fci_stage_3.groovy;h=67f3491e44f5e917e5e050c8d4f73c344e6a732e;hb=refs%2Fchanges%2F44%2F6544%2F1;hp=aef40c1a2838ef466f0fa00fffe31034c3bca2c6;hpb=a77bf2a824b444c0351d6afec594abf5502b4336;p=osm%2Fdevops.git diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index aef40c1a..67f3491e 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -33,6 +33,7 @@ properties([ string(defaultValue: 'osm-stage_4', description: '', name: 'DOWNSTREAM_STAGE_NAME'), booleanParam(defaultValue: false, description: '', name: 'SAVE_CONTAINER_ON_FAIL'), booleanParam(defaultValue: false, description: '', name: 'SAVE_CONTAINER_ON_PASS'), + booleanParam(defaultValue: true, description: '', name: 'SAVE_ARTIFACTS_ON_SMOKE_SUCCESS'), booleanParam(defaultValue: false, description: '', name: 'DO_STAGE_4'), booleanParam(defaultValue: true, description: '', name: 'DO_BUILD'), booleanParam(defaultValue: true, description: '', name: 'DO_INSTALL'), @@ -51,9 +52,8 @@ def uninstall_osm(stackName) { def run_systest(stackName,tagName,testName) { tempdir = sh(returnStdout: true, script: "mktemp -d").trim() - sh "docker run -ti --network net${stackName} -v ${tempdir}:/usr/share/osm-devops/systest/reports osm/osmclient:${tagName} make -C /usr/share/osm-devops/systest ${testName}" - cp "${tempdir}/*.xml ." - junit '*.xml' + sh "docker run --network net${stackName} -v ${tempdir}:/usr/share/osm-devops/systest/reports osm/osmclient:${tagName} make -C /usr/share/osm-devops/systest ${testName}" + junit "${tempdir}/*.xml" } node("${params.NODE}") { @@ -215,16 +215,18 @@ node("${params.NODE}") { } } + stage_archive = false if ( params.DO_SMOKE ) { stage("OSM Health") { sh "installers/osm_health.sh -s ${container_name}" } 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 } } - stage_4_archive = false if ( params.DO_STAGE_4 ) { stage("stage_4") { def downstream_params = [ @@ -235,13 +237,13 @@ node("${params.NODE}") { currentBuild.result = stage_4_result.result if ( stage_4_result.getResult().equals('SUCCESS') ) { - stage_4_archive = true; + stage_archive = true; } } } // override to save the artifacts - if ( params.SAVE_ARTIFACTS_OVERRIDE || stage_4_archive ) { + if ( params.SAVE_ARTIFACTS_OVERRIDE || stage_archive ) { stage("Archive") { sh "echo ${container_name} > build_version.txt" archiveArtifacts artifacts: "build_version.txt", fingerprint: true