jenkins: stop resumable deadlocks for harbor arm builds

This commit is contained in:
bstein 2026-04-10 12:55:52 -03:00
parent 464bf57cda
commit a9040ff11d

5
Jenkinsfile vendored
View File

@ -63,7 +63,12 @@ spec:
PUSHGATEWAY_URL = 'http://platform-quality-gateway.monitoring.svc.cluster.local:9091'
}
options {
timestamps()
disableConcurrentBuilds()
// Avoid "resume deadlocks" when Jenkins restarts mid-build on long Harbor compiles.
disableResume()
// Hard cap so we fail fast instead of burning workers indefinitely.
timeout(time: 180, unit: 'MINUTES')
}
stages {
stage('Checkout pipeline repo') {