美文网首页
jenkins pipeline input 参数选择发布不通环

jenkins pipeline input 参数选择发布不通环

作者: _fishman | 来源:发表于2020-07-27 10:20 被阅读0次
    pipeline {
        agent any
        stages {
            stage("test") {
                steps {
                    timeout(time: 1, unit: 'MINUTES') {
                    script {
                        env.DEPLOY_ENV = input message: '选择部署的环境', ok: 'deploy',
                            parameters: [choice(name: 'DEPLOY_ENV', choices: ['prd', 'uat', 'test'], description: '选择部署环境')]
    
                            switch("${env.DEPLOY_ENV}"){
                                case 'prd':
                                    println('deploy prd env')
                                    break;
    
                                case 'uat':
                                    println('deploy uat env')
                                    break;
    
                                case 'test':
                                    println('deploy test env')
                                    break;
                                
                                default:
                                    println('error env')
    
                            }
                        }
                    }
                }
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:jenkins pipeline input 参数选择发布不通环

          本文链接:https://www.haomeiwen.com/subject/szoalktx.html