我们为Hudson提供了一个自定义插件,可以将构建的输出上传到远程计算机上。我们刚开始考虑使用Hudson slave来提高构建的吞吐量,但是使用自定义插件的项目无法使用FileNotFoundExceptions进行部署。
从我们可以看到,即使构建发生在slave上,插件也会在master上运行。未找到的文件确实存在于从站上,但不存在于主站上。
问题:
答案 0 :(得分:18)
首先,go Jenkins! ;)
其次,你是对的 - 代码正在主服务器上执行。这是Hudson / Jenkins插件的默认行为。
如果要在远程节点上运行代码,则需要获取对该节点VirtualChannel
的引用,例如通过可能传递到插件主要方法的Launcher
。
要在远程节点上运行的代码应封装在Callable
中 - 这是需要可序列化的部分,因为Jenkins将自动序列化它,通过其通道将其传递给节点,执行它并返回结果。
这也隐藏了主服务器和从服务器之间的区别 - 即使构建实际上在主服务器上运行,“可调用”代码也会在正确的机器上透明地运行。
例如:
@Override
public boolean perform(AbstractBuild<?, ?> build, Launcher launcher,
BuildListener listener) {
// This method is being run on the master...
// Define what should be run on the slave for this build
Callable<String, IOException> task = new Callable<String, IOException>() {
public String call() throws IOException {
// This code will run on the build slave
return InetAddress.getLocalHost().getHostName();
}
};
// Get a "channel" to the build machine and run the task there
String hostname = launcher.getChannel().call(task);
// Much success...
}
另请参阅FileCallable
,并查看具有类似功能的other Jenkins plugins源代码。
我建议您的插件正常工作,而不是使用网络共享解决方案.. :))