从Jenkinsfile设置管道名称和描述

从Jenkinsfile设置管道名称和描述,第1张

从Jenkinsfile设置管道名称和描述

您需要使用

currentBuild
如下所示。该
node
部分很重要

node {    currentBuild.displayName = "$yournamevariable-$another"    currentBuild.description = "$yourdescriptionvariable-$another"}

编辑:上面一个重命名生成,其中原始问题是关于重命名作业。在管道中执行以下脚本可以做到这一点(这需要 适当的权限

item = Jenkins.instance.getItemByFullName("originalJobName")item.setDescription("This description was changed by script")item.save()item.renameTo("newJobName")


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5642399.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存