ci: disable restart from stage in jenkins (#3515)

related issue : https://github.com/status-im/infra-ci/issues/202
This commit is contained in:
Siddarth Kumar 2025-07-19 09:56:05 +05:30 committed by GitHub
parent 3fb21ae079
commit 07e11899b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,7 @@ pipeline {
options {
timestamps()
timeout(time: 20, unit: 'MINUTES')
disableRestartFromStage()
buildDiscarder(logRotator(
numToKeepStr: '10',
daysToKeepStr: '30',

View File

@ -36,6 +36,7 @@ pipeline {
options {
timestamps()
disableRestartFromStage()
/* Prevent Jenkins jobs from running forever */
timeout(time: 30, unit: 'MINUTES')
/* Limit builds retained. */

View File

@ -6,6 +6,7 @@ pipeline {
options {
timestamps()
disableRestartFromStage()
timeout(time: 20, unit: 'MINUTES')
buildDiscarder(logRotator(
numToKeepStr: '10',