From 982413a28a98cc3783e8e19490df6e225424b88b Mon Sep 17 00:00:00 2001 From: Leander Seidlitz Date: Mon, 18 May 2026 16:16:44 +0200 Subject: [PATCH] Jenkinsfile: Do not bind an agent for the pipeline The pipeline binds an agent for the purpose of pipeline handling. This worker idles until the pipeline completes. All tasks of this worker can be handled by the Jenkins controller. Signed-off-by: Leander Seidlitz --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 007316f..fd68dfe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,5 @@ pipeline { - agent any + agent none parameters { string(name: 'PR_BRANCHES', defaultValue: '', description: 'Comma separated list of additional pull request branches (e.g. meta-gyroidos=PR-177,meta-gyroidos-nxp=PR-13,gyroidos_build=PR-97)')