Jenkins has the Gerrit Plugin in place so that when we do check-ins to Gerrit, Jenkins performs a build and if it succeeds, then the modification in Gerrit is verified. If the build fails then it is not. My understanding is that this is accomplished through jobs set up in Jenkins. We have now created a new branch (git) and I guess I need to clone the existing jobs pointing to the other branch so that this same workflow occurs and builds are performed on every commit. Can somebody explain how I would clone these jobs? I don't seem to see a way to do it through the UI nor can I even see a way to list the jobs out through the UI.


当前回答

新建项目>项目名称= abc >选择“从已有作业的作业名称复制”,而不是“Freestyle作业”

如果你在你想要复制的文件夹中,那么使用../。

其他回答

以上答案都是好的。但如果您为作业创建了“文件夹”,情况就略有不同了。

单击要在其中创建新作业的文件夹。然后点击左侧菜单中的“新建项目”。现在你的“新工作”URL看起来像这样(假设你在“my-folder”下创建了新工作):

http://my-jenkins:8080/job/my-folder/newJob

在“输入项目名称”下,输入所需的新作业名称。 然后使用底部的“从文本框复制”。输入源作业的作业路径。

例如,如果你的源作业在src-folder文件夹下,并且作业的名称是src-job,你必须在“从”框中输入src-folder/src-job。

希望能有所帮助。

我无法从子文件夹复制詹金斯作业。从选项复制没有显示我正在寻找的建议。不使用建议,复制作业名是行不通的。

因此,如果您想从外部文件夹创建一个作业,您需要首先在子文件夹中创建作业,然后将其移动到需要放置它的不同文件夹中。

在我的例子中,我必须将一个作业从一个jenkins实例复制到另一个实例。

因此,首先我查看了旧Jenkins的目录结构(作业/目录名;还注意到config.xml),然后在新jenkins的目录结构下,在那里我创建了一个同名/job的目录,并复制了这个新创建的目录下的config.xml。

然后在“管理Jenkins”下,我点击“从磁盘重新加载配置”。这是它。

你也可以使用Copy项目链接插件。

这将在项目的左侧面板上添加一个链接:

下面的屏幕将要求输入新的Job名称:

你可以使用Jobcopy Builder插件