From 9f61130b63ff91366f663a8779b0a3f455ad32a9 Mon Sep 17 00:00:00 2001 From: peusterm Date: Wed, 25 Oct 2017 15:53:41 +0200 Subject: [PATCH] Extended stage_2 pipeline: Allow unittests to be executed in a privileged container by specifing additional arguments for the Jenkins Docker plugin. Required by vim-emu. Change-Id: I46795e1e52259819c171a8ee03d626179a7e81f2 Signed-off-by: peusterm --- jenkins/ci-pipelines/ci_stage_2.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jenkins/ci-pipelines/ci_stage_2.groovy b/jenkins/ci-pipelines/ci_stage_2.groovy index 5a5643d4..68d221f1 100644 --- a/jenkins/ci-pipelines/ci_stage_2.groovy +++ b/jenkins/ci-pipelines/ci_stage_2.groovy @@ -26,7 +26,7 @@ def project_checkout(url_prefix,project,refspec,revision) { } } -def ci_pipeline(mdg,url_prefix,project,branch,refspec,revision,build_system,artifactory_server) { +def ci_pipeline(mdg,url_prefix,project,branch,refspec,revision,build_system,artifactory_server,docker_args="") { println("build_system = ${build_system}") ci_helper = load "devops/jenkins/ci-pipelines/ci_helper.groovy" @@ -52,7 +52,7 @@ def ci_pipeline(mdg,url_prefix,project,branch,refspec,revision,build_system,arti sh "docker build -t ${container_name} ." } - withDockerContainer("${container_name}") { + withDockerContainer(image: "${container_name}", args: docker_args) { stage('Test') { sh 'devops-stages/stage-test.sh' } -- 2.25.1