如何在Jenkins管道中添加构建服务器详细信息?

时间:2017-09-26 09:46:51

标签: jenkins jenkins-pipeline

我在一台服务器上安装了Jenkins,而我的构建服务器则不同。如何在Jenkins管道中指向构建服务器,以便我的应用程序将在构建服务器中构建

使用年级和java。

我们是否需要在舞台内使用节点(' Build 1')?

请给我一些示例代码。

1 个答案:

答案 0 :(得分:1)

在Jenkins中,您的构建服务器称为奴隶机器或Jenkins节点,您需要

首先事先将此“buildserver”添加到Jenkins节点中,然后您将获得节点名称(或标记为import { Route, Switch } from 'react-router-dom' <Switch> <Route exact path ='/' component={Posts} /> <Route exact path ='/:category' component={Posts} /> <Route exact path ='/new' component={NewPost} /> </Switch> ),请参阅one jenkins distributed build blog

enter image description here

在脚本管道中

其次,您可以在节点

中指定/引用此名称
ubuntu-buildserver

如果您使用声明性管道,请检查syntax#agent部分。

node("ubuntu-buildserver") 等其他全局配置类似,您需要在jenkins中定义这些参数,并参考在管道脚本中使用它们。