pipeline parameters 参数化构建&&通过UI创建

通过UI创建
pipeline parameters 参数化构建&&通过UI创建_第1张图片

pipeline 脚本创建


pipeline{

    agent any
    parameters {
        string(name: 'userName', defaultValue: 'Anthony', description: 'please give a name')
        choice(name: 'version', choices: ['1.1', '1.2', '1.3'], description: 'select the version to test')
        booleanParam(name: 'is_boy', defaultValue: true, description: 'you is boy or not')
    }
    stages {
        stage('test') {
            steps{
                script {
                    sh "echo 111111"
                    sh "echo $version -mmmmmmmmmmmmmmmmmmm"
                    
                }
            }
        }
    }
}

pipeline parameters 参数化构建&&通过UI创建_第2张图片

你可能感兴趣的:(Jenkins)