使用Build.getCauses()方法。它将返回生成原因的列表。循环遍历并检查其中是否有hudson.model.Cause.UpstreamCause对象。
要获取构建对象,请使用以下代码片段:
def thr = Thread.currentThread()def build = thr?.executable
仅供参考,这是完整Jenkins Module API的链接。
欢迎分享,转载请注明来源:内存溢出
使用Build.getCauses()方法。它将返回生成原因的列表。循环遍历并检查其中是否有hudson.model.Cause.UpstreamCause对象。
要获取构建对象,请使用以下代码片段:
def thr = Thread.currentThread()def build = thr?.executable
仅供参考,这是完整Jenkins Module API的链接。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)