Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在配置中使用 Jenkins 作业名称:
我可以在这里使用令牌吗?
对于 SCM,答案是“是”——使用 ${JOB_NAME}(例如svn://myserver/myrepo/trunk/${JOB_NAME})。
svn://myserver/myrepo/trunk/${JOB_NAME}
在 Maven 构建步骤中它不起作用。但是,您可以尝试使用包含 ${JOB_NAME}(例如C:\workspaces\${JOB_NAME})的自定义工作区(按下“构建”下的“高级”按钮 -> 选中“使用自定义工作区”)作为解决方法。
C:\workspaces\${JOB_NAME}