Jenkins / Hudson - 设置构建执行时的延迟时间
执行jenkins构建时可以设置延迟时间吗? 就像使用 p.ex 时一样:
http://host/jenkins/job/job_name/build? delay=100sec
但是用插件制作。我不知道如何获取这个延迟参数并将其设置为另一个值。
多谢。
It is possible to set the delay time when executing a jenkins build?
Like when using p.ex:
http://host/jenkins/job/job_name/build?delay=100sec
But making it with a plugin. I dont know how to get this delay parameter and set it with another value.
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为构建参数存储为环境变量,如果是这种情况,那么您应该能够使用如下代码设置它们:
在您的插件中,您可以将其放在扩展 BuildWrapper。
I think build parameters are stored as environment variables and if that's the case, then you should be able set them using some code like this:
In your plugin, you would put this in the setUp method of a class that extends the BuildWrapper.