From 5db6febdb04d1ac7eb6c88a21ea52ef97a0c183e Mon Sep 17 00:00:00 2001 From: Mike Marchetti Date: Wed, 19 Sep 2018 17:27:35 -0400 Subject: [PATCH 1/1] use correct location for make invocation Change-Id: I6e26db36eb8719b8698ad6724ca22f140634069b Signed-off-by: Mike Marchetti --- 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 8f478e0f..2e62dfe6 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -156,7 +156,7 @@ node("${params.NODE}") { error = null if ( params.DO_BUILD ) { stage("Build") { - sh "make clean" + 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}" } } -- 2.25.1