Jenkins / Hudson - 设置构建执行时的延迟时间

发布于 2024-11-06 03:45:13 字数 242 浏览 0 评论 0原文

执行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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晚风撩人 2024-11-13 03:45:13

我认为构建参数存储为环境变量,如果是这种情况,那么您应该能够使用如下代码设置它们:

build.getEnvironment(listener).put("delay", "250");

在您的插件中,您可以将其放在扩展 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:

build.getEnvironment(listener).put("delay", "250");

In your plugin, you would put this in the setUp method of a class that extends the BuildWrapper.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文