如何 从Jenkinsfile(groovy)中获取Jenkins中管道配置字段“脚本路径”的内容?
在此处输入图片说明
在此示例中:我想在 执行Jenkinsfile本身时获取字符串’Apps / mq-logger / Jenkinsfile’ 。
您可以通过这种方式获取脚本路径
def scriptPath = currentBuild.rawBuild.parent.definition.scriptPath
请注意,您必须approve 所有这些方法。