gpt4 book ai didi

jenkins - Jenkins Pipeline 中的环境变量

转载 作者:行者123 更新时间:2023-12-01 15:03:23 27 4
gpt4 key购买 nike

是否有任何环境变量可用于获取 Jenkins 管道标题?

我知道我们可以使用 $JOB_NAME获得自由式工作的头衔,
但是有什么可以用来获取管道名称的吗?

最佳答案

您可以使用相同的名称(例如 JOB_NAMEenv.JOB_NAME )从 groovy 访问相同的环境变量。

从文档:

Environment variables are accessible from Groovy code as env.VARNAME or simply as VARNAME. You can write to such properties as well (only using the env. prefix):

env.MYTOOL_VERSION = '1.33'
node {
sh '/usr/local/mytool-$MYTOOL_VERSION/bin/start'
}

These definitions will also be available via the REST API during the build or after its completion, and from upstream Pipeline builds using the build step.



对于文档的其余部分,请单击任何流水线作业中的“流水线语法”链接
enter image description here

关于jenkins - Jenkins Pipeline 中的环境变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41604854/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com