From 5fe787ddf24ea90966959f4ecf779d29be6af885 Mon Sep 17 00:00:00 2001 From: Mike Marchetti Date: Fri, 28 Sep 2018 14:43:51 -0400 Subject: [PATCH] Disable parallel make for easier debugging make -j4 was used for speedup, however it is difficult to trace failures. Signed-off-by: Mike Marchetti Change-Id: I06a1dbb3bf295030d05cc22b4f84c4a6e9796a7a --- jenkins/ci-pipelines/ci_stage_3.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}" } } -- 2.25.1