Use specific Jenkins nodes for releases

This should be safer as these nodes are only used once.
This commit is contained in:
Yoann Rodière 2024-12-16 11:10:52 +01:00
parent 0db5d77c21
commit 951c819ebf
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ def checkoutReleaseScripts() {
pipeline { pipeline {
agent { agent {
label 'Worker&&Containers' label 'Release'
} }
triggers { triggers {
// Run every week Sunday midnight // Run every week Sunday midnight

View File

@ -12,7 +12,7 @@ if (currentBuild.getBuildCauses().toString().contains('BranchIndexingCause')) {
pipeline { pipeline {
agent { agent {
label 'Fedora' label 'Release'
} }
tools { tools {
jdk 'OpenJDK 11 Latest' jdk 'OpenJDK 11 Latest'