Merge "Disable parallel make for easier debugging"
authorMike Marchetti <mmarchetti@sandvine.com>
Fri, 28 Sep 2018 21:36:35 +0000 (23:36 +0200)
committerGerrit Code Review <root@osm.etsi.org>
Fri, 28 Sep 2018 21:36:35 +0000 (23:36 +0200)
jenkins/ci-pipelines/ci_stage_3.groovy

index 1c0c367..ec4cdaf 100644 (file)
@@ -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}"
             }
         }