fix: Update agent specification

This commit is contained in:
Guilhem Lavaux 2025-03-08 18:29:05 +01:00
parent c60e92f549
commit 1f03b55899

9
Jenkinsfile vendored
View file

@ -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'))