From 040e5c3c63ee822827b2bb2316a4a626de6f74f6 Mon Sep 17 00:00:00 2001 From: DanyLE Date: Sun, 10 Mar 2024 16:40:16 +0100 Subject: [PATCH] fix(CI): use correct docker node --- Jenkinsfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 92106f3..19b3bef 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,10 @@ pipeline { - agent { node { label'xsangle/ci-tools:latest' } } + agent { + docker { + image 'xsangle/ci-tools:latest' + reuseNode true + } + } options { // Limit build history with buildDiscarder option: // daysToKeepStr: history is only kept up to this many days.