From 8bb135a50a3399fce286a49dd077757468aa93c5 Mon Sep 17 00:00:00 2001 From: Siddarth Kumar Date: Fri, 18 Jul 2025 12:04:34 +0530 Subject: [PATCH] ci: disable restart from stage in jenkins related issue : https://github.com/status-im/infra-ci/issues/202 --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8d45cdc..18e7c19 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,6 +5,7 @@ pipeline { agent { label 'linux' } options { + disableRestartFromStage() disableConcurrentBuilds() /* manage how many builds we keep */ buildDiscarder(logRotator( @@ -61,4 +62,4 @@ pipeline { def isMasterBranch() { GIT_BRANCH ==~ /.*master/ } def deployBranch() { isMasterBranch() ? 'deploy-master' : 'deploy-develop' } -def deployDomain() { isMasterBranch() ? 'docs.status.network' : 'dev-docs.status.network' } \ No newline at end of file +def deployDomain() { isMasterBranch() ? 'docs.status.network' : 'dev-docs.status.network' }