This commit is contained in:
thienqb123456
2025-02-28 17:24:42 +07:00
parent 2b0143e2f9
commit 27c4b620e4
5 changed files with 21 additions and 573 deletions
+1 -4
View File
@@ -1,7 +1,7 @@
pipeline {
agent any
parameters {
choice(name: 'ENV', choices: ['prod', 'uat', 'beta'], description: 'Choose Environment')
choice(name: 'ENV', choices: ['uat', 'beta'], description: 'Choose Environment')
string(name: 'CI_JOB_BUILD_NUMBER', defaultValue: '', description: 'Build number of CI Job')
}
environment {
@@ -35,9 +35,6 @@ pipeline {
case 'uat':
env.CI_JOB_NAME = env.CI_JOB_NAME_UAT
break
case 'prod':
env.CI_JOB_NAME = env.CI_JOB_NAME_PROD
break
case 'beta':
env.CI_JOB_NAME = env.CI_JOB_NAME_BETA
break