Use specific Jenkins nodes for releases
This should be safer as these nodes are only used once.
This commit is contained in:
parent
0db5d77c21
commit
951c819ebf
|
@ -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
|
||||||
|
|
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue