自定义Jenkins管道阶段视图

时间:2017-05-31 00:16:55

标签: jenkins plugins groovy jenkins-pipeline dsl

如何在Jenkins管道中将小蓝色标签添加到舞台视图?

enter image description here

2 个答案:

答案 0 :(得分:5)

我也在搜索这个,并在阅读了Hatim的回答后找到了以下内容:

应该显示节点标签的行被注释掉: source

引用的问题JENKINS-33290Resolved,其中包含最后一条评论:

  

通过删除功能解决,因为正确的实现会带来不可接受的复杂性和开销。

所以我担心它不会很快回来,所有在线截图都已过时。

答案 1 :(得分:0)

是使用的节点的名称或标签。

请参阅此 https://jenkins.io/doc/pipeline/steps/workflow-durable-task-step/

node: Allocate node
Allocates an executor on a node (typically a slave) and runs further code in the context of a workspace on that slave.
label
Computer name, label name, or any other label expression like linux && 64bit to restrict where this step builds. May be left blank, in which case any available executor is taken.

在这种情况下,舞台在主人中执行,如果你将jenkins管道配置为在不同的平台(主从)中执行,那么你将能够看到奴隶environement的标签。