From 4796cff56f50f915390efb7652a889644ce907a7 Mon Sep 17 00:00:00 2001 From: Codex Date: Mon, 1 Jun 2026 12:16:35 +0000 Subject: [PATCH] fix deploy labels --- jenkins/Jenkinsfile.production-api-deploy | 6 +++--- jenkins/Jenkinsfile.production-stdb-module-publish | 6 +++--- jenkins/Jenkinsfile.production-web-deploy | 6 +++--- scripts/jenkins-prepare-cargo-env.sh | 0 4 files changed, 9 insertions(+), 9 deletions(-) mode change 100644 => 100755 scripts/jenkins-prepare-cargo-env.sh diff --git a/jenkins/Jenkinsfile.production-api-deploy b/jenkins/Jenkinsfile.production-api-deploy index af0d71a3..95432266 100644 --- a/jenkins/Jenkinsfile.production-api-deploy +++ b/jenkins/Jenkinsfile.production-api-deploy @@ -64,7 +64,7 @@ pipeline { stage('Checkout Deploy Scripts') { agent { - label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-build' : 'linux && genarrative-release-deploy'}" + label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-dev-deploy' : 'linux && genarrative-release-deploy'}" } steps { script { @@ -111,7 +111,7 @@ pipeline { stage('Fetch Artifact') { agent { - label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-build' : 'linux && genarrative-release-deploy'}" + label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-dev-deploy' : 'linux && genarrative-release-deploy'}" } steps { copyArtifacts( @@ -126,7 +126,7 @@ pipeline { stage('Deploy Api') { agent { - label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-build' : 'linux && genarrative-release-deploy'}" + label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-dev-deploy' : 'linux && genarrative-release-deploy'}" } steps { sh ''' diff --git a/jenkins/Jenkinsfile.production-stdb-module-publish b/jenkins/Jenkinsfile.production-stdb-module-publish index ab6cad21..a543ce04 100644 --- a/jenkins/Jenkinsfile.production-stdb-module-publish +++ b/jenkins/Jenkinsfile.production-stdb-module-publish @@ -77,7 +77,7 @@ pipeline { stage('Checkout Publish Scripts') { agent { - label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-build' : 'linux && genarrative-release-deploy'}" + label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-dev-deploy' : 'linux && genarrative-release-deploy'}" } steps { script { @@ -119,7 +119,7 @@ pipeline { stage('Fetch Artifact') { agent { - label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-build' : 'linux && genarrative-release-deploy'}" + label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-dev-deploy' : 'linux && genarrative-release-deploy'}" } steps { copyArtifacts( @@ -134,7 +134,7 @@ pipeline { stage('Publish Stdb Module') { agent { - label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-build' : 'linux && genarrative-release-deploy'}" + label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-dev-deploy' : 'linux && genarrative-release-deploy'}" } steps { script { diff --git a/jenkins/Jenkinsfile.production-web-deploy b/jenkins/Jenkinsfile.production-web-deploy index 7597ec41..97f21bbe 100644 --- a/jenkins/Jenkinsfile.production-web-deploy +++ b/jenkins/Jenkinsfile.production-web-deploy @@ -55,7 +55,7 @@ pipeline { stage('Checkout Deploy Scripts') { agent { - label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-build' : 'linux && genarrative-release-deploy'}" + label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-dev-deploy' : 'linux && genarrative-release-deploy'}" } steps { script { @@ -97,7 +97,7 @@ pipeline { stage('Fetch Artifact') { agent { - label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-build' : 'linux && genarrative-release-deploy'}" + label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-dev-deploy' : 'linux && genarrative-release-deploy'}" } steps { copyArtifacts( @@ -165,7 +165,7 @@ pipeline { stage('Deploy Web') { agent { - label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-build' : 'linux && genarrative-release-deploy'}" + label "${params.DEPLOY_TARGET == 'development' ? 'linux && genarrative-dev-deploy' : 'linux && genarrative-release-deploy'}" } steps { sh ''' diff --git a/scripts/jenkins-prepare-cargo-env.sh b/scripts/jenkins-prepare-cargo-env.sh old mode 100644 new mode 100755