File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ properties([disableConcurrentBuilds()])
5
5
6
6
// from shared library
7
7
target = osconfig()
8
+ docker_args = docker_args()
8
9
9
10
currentBuild.description = "Pipelined " + target
10
11
@@ -22,7 +23,7 @@ node("linux") {
22
23
23
24
stage("Building target ${target}") {
24
25
25
- withDockerContainer(image: "jenkins-${target}") {
26
+ withDockerContainer(image: "jenkins-${target}", args: docker_args ) {
26
27
// from shared library
27
28
build(target, target_dir)
28
29
}
@@ -43,7 +44,7 @@ node("linux") {
43
44
"Unit testing": {
44
45
45
46
ut_result = "no-result"
46
- withDockerContainer(image: "jenkins-${target}") {
47
+ withDockerContainer(image: "jenkins-${target}", args: docker_args ) {
47
48
ut_result = run_ut(target)
48
49
}
49
50
@@ -52,7 +53,7 @@ node("linux") {
52
53
},
53
54
"Installtest": {
54
55
55
- withDockerContainer(image: "jenkins-${target}-basic") {
56
+ withDockerContainer(image: "jenkins-${target}-basic", args: docker_args ) {
56
57
// from shared library
57
58
installtest_nopython(target, target_dir)
58
59
}
You can’t perform that action at this time.
0 commit comments