ci: specify explicit throttle limits for Jenkins (#3913)
Otherwise they appear to not have any effect: https://issues.jenkins.io/browse/JENKINS-49173 https://github.com/jenkinsci/throttle-concurrent-builds-plugin/pull/68 Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
dcea09ea5c
commit
5b66cd141e
|
@ -23,9 +23,11 @@ pipeline {
|
||||||
))
|
))
|
||||||
/* Throttle number of concurrent builds. */
|
/* Throttle number of concurrent builds. */
|
||||||
throttleJobProperty(
|
throttleJobProperty(
|
||||||
categories: ['nimbus-eth2'],
|
|
||||||
throttleEnabled: true,
|
throttleEnabled: true,
|
||||||
throttleOption: 'category'
|
throttleOption: 'category',
|
||||||
|
categories: ['nimbus-eth2'],
|
||||||
|
maxConcurrentPerNode: 1,
|
||||||
|
maxConcurrentTotal: 6
|
||||||
)
|
)
|
||||||
/* Abort old builds for non-main branches. */
|
/* Abort old builds for non-main branches. */
|
||||||
disableConcurrentBuilds(
|
disableConcurrentBuilds(
|
||||||
|
|
Loading…
Reference in New Issue