From ebd57a437628dd78e0f6a5cd2d98aa95351b0664 Mon Sep 17 00:00:00 2001 From: Mandel Olaiya Date: Sun, 29 Mar 2026 21:34:30 +0200 Subject: [PATCH] Run multilingual audit stages on built-in Jenkins node --- Jenkinsfile | 1 + Jenkinsfile.multilingual-nightly | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4c58ae1..139868b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -100,6 +100,7 @@ pipeline { } } stage('Post-Deploy Multilingual Audit') { + agent { label 'built-in' } options { timeout(time: 10, unit: 'MINUTES') } diff --git a/Jenkinsfile.multilingual-nightly b/Jenkinsfile.multilingual-nightly index 0338466..621b11b 100644 --- a/Jenkinsfile.multilingual-nightly +++ b/Jenkinsfile.multilingual-nightly @@ -1,7 +1,7 @@ #!/usr/bin/env groovy pipeline { - agent { label 'external_pool' } + agent none triggers { cron('H 2 * * *') } @@ -34,6 +34,7 @@ pipeline { } } stage('Nightly Multilingual Audit') { + agent { label 'built-in' } options { timeout(time: 10, unit: 'MINUTES') }