aboutsummaryrefslogtreecommitdiff
path: root/jenkins/bisect.jpl
diff options
context:
space:
mode:
Diffstat (limited to 'jenkins/bisect.jpl')
-rw-r--r--jenkins/bisect.jpl5
1 files changed, 3 insertions, 2 deletions
diff --git a/jenkins/bisect.jpl b/jenkins/bisect.jpl
index 49e180a..e83483b 100644
--- a/jenkins/bisect.jpl
+++ b/jenkins/bisect.jpl
@@ -530,7 +530,9 @@ node("docker && bisection") {
/* Global pipeline constants */
env._BUILD_JSON = "build-data.json"
- def docker_image = "${params.DOCKER_BASE}${params.COMPILER}_${params.ARCH}"
+ def j = new Job()
+ def docker_image = j.dockerImageName(
+ params.DOCKER_BASE, params.COMPILER, params.ARCH)
def kci_core = env.WORKSPACE + '/kernelci-core'
def kdir = env.WORKSPACE + '/linux'
def checks = [:]
@@ -575,7 +577,6 @@ ${params_summary}"""
}
}
- def j = new Job()
j.dockerPullWithRetry(docker_image).inside() {
try {
def valid_bisect = bisection(kci_core, kdir, checks)