X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=jenkins%2Fci-pipelines%2Fci_stage_3.groovy;h=fb4d56517010cb0d074db4d7ec91b7f1cb7417f4;hb=refs%2Fchanges%2F12%2F6512%2F1;hp=44b8d7664a28c703b04003e22a35ab117d07113e;hpb=13d76c8224da1ff6ad5181a03af9f4085dae95d4;p=osm%2Fdevops.git diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index 44b8d766..fb4d5651 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -34,6 +34,7 @@ properties([ booleanParam(defaultValue: false, description: '', name: 'SAVE_CONTAINER_ON_FAIL'), booleanParam(defaultValue: false, description: '', name: 'SAVE_CONTAINER_ON_PASS'), booleanParam(defaultValue: false, description: '', name: 'DO_STAGE_4'), + booleanParam(defaultValue: true, description: '', name: 'DO_BUILD'), booleanParam(defaultValue: false, description: '', name: 'DO_INSTALL'), booleanParam(defaultValue: false, description: '', name: 'DO_SMOKE'), booleanParam(defaultValue: false, description: '', name: 'SAVE_ARTIFACTS_OVERRIDE'), @@ -153,6 +154,11 @@ node("${params.NODE}") { } error = null + if ( params.DO_BUILD ) { + stage("Build") { + sh "make -j4 -C docker CMD_DOCKER_ARGS= TAG=${container_name}" + } + } try { if ( params.DO_INSTALL ) { @@ -189,6 +195,7 @@ node("${params.NODE}") { sh """ export PATH=$PATH:/snap/bin installers/full_install_osm.sh -y -s ${container_name} --test --nolxd --nodocker --nojuju --nohostports --nohostclient \ + --nodockerbuild -t ${container_name} \ ${commit_id} \ ${repo_distro} \ ${repo_base_url} \