This is an automated email from the ASF dual-hosted git repository.

pibizza pushed a commit to branch main
in repository 
https://gitbox.apache.org/repos/asf/incubator-kie-kogito-pipelines.git


The following commit(s) were added to refs/heads/main by this push:
     new 6366482a Missing docker closure in agent (#1233)
6366482a is described below

commit 6366482a5931af3291452d5a4bf8f5ffec361f05
Author: Paolo Bizzarri <[email protected]>
AuthorDate: Tue Aug 6 14:14:28 2024 +0200

    Missing docker closure in agent (#1233)
---
 .ci/jenkins/Jenkinsfile.tools.update-jenkins-dependencies | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/.ci/jenkins/Jenkinsfile.tools.update-jenkins-dependencies 
b/.ci/jenkins/Jenkinsfile.tools.update-jenkins-dependencies
index dc18d65f..9c7e2025 100644
--- a/.ci/jenkins/Jenkinsfile.tools.update-jenkins-dependencies
+++ b/.ci/jenkins/Jenkinsfile.tools.update-jenkins-dependencies
@@ -10,9 +10,11 @@ branchCreated = false
 
 pipeline {
     agent {
-        image env.AGENT_DOCKER_BUILDER_IMAGE
-        args env.AGENT_DOCKER_BUILDER_ARGS
-        label util.avoidFaultyNodes('ubuntu')
+        docker {
+            image env.AGENT_DOCKER_BUILDER_IMAGE
+            args env.AGENT_DOCKER_BUILDER_ARGS
+            label util.avoidFaultyNodes('ubuntu')
+        }
     }
 
     options {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to