我正在尝试使用Groovy设置Jenkins中的执行程序数.我找到了一个方法hudson.model.Hudson.instance.setNumExecutors(int)但它似乎并没有真正起作用.问题是在运行Groovy脚本后修改后的值出现在配置面板中,但是我必须在该面板中单击“保存”才能真正更改它.
这是代码(作为Jenkins Groovy插件的构建步骤执行):
import hudson.model.* // Initial number of executors is 1,let's increase the number of executors to 2 Hudson hudson = Hudson.getInstance() hudson.setNumExecutors(2) hudson.save() def job = hudson.getJob("some_other_job") def future = job.scheduleBuild2(0,new Cause.UpstreamCause(build)) subBuild = future.get() // Set the number of executors back to 1 hudson.setNumExecutors(1) hudson.save()
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。