自定义 Jenkins 流水线阶段视图
Customize Jenkins pipeline stage view
如何将蓝色小标签添加到 Jenkins 管道中的舞台视图?
是使用的节点名称或标签。
请参考这个
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 管道配置为在不同的平台(主从)中执行,那么您将能够看到您的奴隶环境的标签。
我也在搜索这个,在阅读了 Hatim 的回答后发现了以下内容:
本应显示节点标签的行被注释掉了:
source
引用的问题 JENKINS-33290 是 Resolved
最后一条评论:
Resolved by removing the functionality, since a correct implementation imposes unacceptable complexity and overhead.
所以我担心它不会很快回来,所有那些网上的截图都已经过时了。
如何将蓝色小标签添加到 Jenkins 管道中的舞台视图?
是使用的节点名称或标签。
请参考这个
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 管道配置为在不同的平台(主从)中执行,那么您将能够看到您的奴隶环境的标签。
我也在搜索这个,在阅读了 Hatim 的回答后发现了以下内容:
本应显示节点标签的行被注释掉了: source
引用的问题 JENKINS-33290 是 Resolved
最后一条评论:
Resolved by removing the functionality, since a correct implementation imposes unacceptable complexity and overhead.
所以我担心它不会很快回来,所有那些网上的截图都已经过时了。