想要使用 Jenkins 中的扩展选择参数中的选定值,使用 bash 中的多级参数类型
Want to use selected values from extended choice parameter in Jenkins using multi-level parameter type in bash
Inputs from the user
我想在 bash 脚本中一一使用选定的值。
还想将这些值保存在一个文件中。
我该怎么做?
为了到达那里,试着写一个 Jenkins Pipeline. You need to use those parameters in your Jenkinsfile. Please check 看看如何在你的 jenkinsfile 中使用扩展的选择参数。
您可以将这些参数传递给 Jenkinsfile 中的 bash 脚本。此外,使用 bash 脚本,您也可以将它们插入文件中。
此外,还要检查 this answer。它提供了一些有关其工作原理的见解。
Inputs from the user
我想在 bash 脚本中一一使用选定的值。 还想将这些值保存在一个文件中。 我该怎么做?
为了到达那里,试着写一个 Jenkins Pipeline. You need to use those parameters in your Jenkinsfile. Please check
此外,还要检查 this answer。它提供了一些有关其工作原理的见解。