ci: disable restart from stage in jenkins

related issue : https://github.com/status-im/infra-ci/issues/202
This commit is contained in:
Siddarth Kumar 2025-07-18 14:03:49 +05:30
parent 5dea6d3bce
commit f762c8de4d
No known key found for this signature in database
GPG Key ID: 599D10112BF518DB
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ pipeline {
options {
timestamps()
disableRestartFromStage()
buildDiscarder(logRotator(
numToKeepStr: '10',
daysToKeepStr: '30',

View File

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