标签: curl jenkins parameters
我在多个主机上运行jenkins构建。因此,我创建了一个带有IP列表的字符串参数,如:
我的问题是,如果我的curl命令发生变化以远程触发作业,我该如何指定IP列表。
答案 0 :(得分:3)
使用http://server/job/myjob/buildWithParameters?PARAMETER=Value代替http://server/job/myjob/build。更多信息可以是found here。
http://server/job/myjob/buildWithParameters?PARAMETER=Value
http://server/job/myjob/build
如果你的参数中有空格,那么你用%20替换空格,所以http://server/job/myjob/buildWithParameters?LHOST=10.4.6.236%2010.4.6.237%2010.4.6.238
http://server/job/myjob/buildWithParameters?LHOST=10.4.6.236%2010.4.6.237%2010.4.6.238