From 1f03b5589985b072a9a35d10dae71ac286d20dd4 Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Sat, 8 Mar 2025 18:29:05 +0100 Subject: [PATCH] fix: Update agent specification --- Jenkinsfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1ce3440..a32d36d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,12 @@ pipeline { - agent { node { label 'ubuntu'; } } + agent { + kubernetes { + inheritFrom 'ubuntu-builder' + defaultContainer 'ubuntu' + retries 1 + activeDeadlineSeconds 10800 + } + } options { buildDiscarder(logRotator(numToKeepStr: '5'))