From: Mike Marchetti Date: Fri, 28 Sep 2018 21:36:35 +0000 (+0200) Subject: Merge "Disable parallel make for easier debugging" X-Git-Tag: v5.0.0~93 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=7bfdced8ddcbdfa07a27bd3b07c1b103320587c1;hp=de6a5cfb63166480a7a0b04f6e0d0e34f0435df6;p=osm%2Fdevops.git Merge "Disable parallel make for easier debugging" --- diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index 1c0c3675..ec4cdaff 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -176,7 +176,7 @@ node("${params.NODE}") { if ( params.DO_BUILD ) { stage("Build") { sh "make -C docker clean" - sh "make -j4 -C docker CMD_DOCKER_ARGS= TAG=${container_name} RELEASE=${params.RELEASE} REPOSITORY_BASE=${repo_base_url} REPOSITORY_KEY=${params.REPO_KEY_NAME} REPOSITORY=${params.REPO_DISTRO}" + sh "make -C docker Q= CMD_DOCKER_ARGS= TAG=${container_name} RELEASE=${params.RELEASE} REPOSITORY_BASE=${repo_base_url} REPOSITORY_KEY=${params.REPO_KEY_NAME} REPOSITORY=${params.REPO_DISTRO}" } }