groovy 将Jenkins管道中的交互式输入读取到变量

3b6akqbq  于 2022-11-01  发布在  Jenkins
关注(0)|答案(4)|浏览(198)

在Jenkins管道中,我想为用户提供一个选项,让用户在运行时给予交互式输入。我想了解我们如何在groovy脚本中读取用户输入。请求帮助我们提供一个示例代码:
我指的是以下文档:https://jenkins.io/doc/pipeline/steps/pipeline-input-step/
编辑-1:
经过几次试验,我终于成功了:

pipeline {
    agent any

    stages {

        stage("Interactive_Input") {
            steps {
                script {
                def userInput = input(
                 id: 'userInput', message: 'Enter path of test reports:?', 
                 parameters: [
                 [$class: 'TextParameterDefinition', defaultValue: 'None', description: 'Path of config file', name: 'Config'],
                 [$class: 'TextParameterDefinition', defaultValue: 'None', description: 'Test Info file', name: 'Test']
                ])
                echo ("IQA Sheet Path: "+userInput['Config'])
                echo ("Test Info file path: "+userInput['Test'])

                }
            }
        }
    }
}

在本例中,我可以回显(打印)用户输入参数:

echo ("IQA Sheet Path: "+userInput['Config'])
echo ("Test Info file path: "+userInput['Test'])

但是我不能将这些参数写入文件或将它们赋值给变量,我们如何才能做到这一点呢?

tyky79it

tyky79it1#

要保存到变量和文件,请根据您所拥有的内容尝试以下操作:

pipeline {

    agent any

    stages {

        stage("Interactive_Input") {
            steps {
                script {

                    // Variables for input
                    def inputConfig
                    def inputTest

                    // Get the input
                    def userInput = input(
                            id: 'userInput', message: 'Enter path of test reports:?',
                            parameters: [

                                    string(defaultValue: 'None',
                                            description: 'Path of config file',
                                            name: 'Config'),
                                    string(defaultValue: 'None',
                                            description: 'Test Info file',
                                            name: 'Test'),
                            ])

                    // Save to variables. Default to empty string if not found.
                    inputConfig = userInput.Config?:''
                    inputTest = userInput.Test?:''

                    // Echo to console
                    echo("IQA Sheet Path: ${inputConfig}")
                    echo("Test Info file path: ${inputTest}")

                    // Write to file
                    writeFile file: "inputData.txt", text: "Config=${inputConfig}\r\nTest=${inputTest}"

                    // Archive the file (or whatever you want to do with it)
                    archiveArtifacts 'inputData.txt'
                }
            }
        }
    }
}
vcudknz3

vcudknz32#

这是input()用法的最简单示例。

  • 在阶段视图中,当您将鼠标悬停在第一阶段时,会看到问题“是否要继续?”。
  • 运行作业时,您将在控制台输出中看到类似注解

在您单击“继续”或“中止”之前,作业将在暂停状态下等待用户输入。

pipeline {
    agent any

    stages {
        stage('Input') {
            steps {
                input('Do you want to proceed?')
            }
        }

        stage('If Proceed is clicked') {
            steps {
                print('hello')
            }
        }
    }
}

有更多的高级用法来显示参数列表并允许用户选择一个参数。基于选择,您可以编写groovy逻辑以继续并部署到QA或生产。
以下脚本呈现一个下拉列表,用户可以从中进行选择

stage('Wait for user to input text?') {
    steps {
        script {
             def userInput = input(id: 'userInput', message: 'Merge to?',
             parameters: [[$class: 'ChoiceParameterDefinition', defaultValue: 'strDef', 
                description:'describing choices', name:'nameChoice', choices: "QA\nUAT\nProduction\nDevelop\nMaster"]
             ])

            println(userInput); //Use this value to branch to different logic if needed
        }
    }

}

您还可以使用StringParameterDefinitionTextParameterDefinitionBooleanParameterDefinition以及链接中提到的许多其他名称

2ekbmq32

2ekbmq323#

解决方案:为了在jenkins管道上设置、获取和访问作为变量的用户输入,您应该使用 ChoiceParameterDefinition,并附加一个快速工作片段:

script {
            // Define Variable
             def USER_INPUT = input(
                    message: 'User input required - Some Yes or No question?',
                    parameters: [
                            [$class: 'ChoiceParameterDefinition',
                             choices: ['no','yes'].join('\n'),
                             name: 'input',
                             description: 'Menu - select box option']
                    ])

            echo "The answer is: ${USER_INPUT}"

            if( "${USER_INPUT}" == "yes"){
                //do something
            } else {
                //do something else
            }
        }
46qrfjad

46qrfjad4#

您可以使用
输入步骤插件
要在运行时暂停jenkins管道并请求用户输入,请阅读本文click here我有编写者明确的步骤要遵循。

相关问题