0

构建完成后,我使用 mail-ext-plugin(Jenkins 电子邮件扩展插件)向某些用户发送电子邮件。我想在该电子邮件中包含开始(请求)构建的用户。我在这里尝试过这个建议,但似乎没有用,我只是收到了这个错误。

Error in script or template: groovy.lang.MissingPropertyException: No such property: CAUSE for class: SimpleTemplateScript4
4

1 回答 1

1

经过大量搜索后,我在 Jenkins wiki 上找到了有关果冻用法的页面(此处)。此页面上有一个链接,其中包含所有可用的类。我能够找到原因类并使用这个很好的示例来帮助我在我的代码中实现它。我添加了

<%
    for (hudson.model.Cause cause : build.causes) {
%>
        ${cause.shortDescription}
<%
    }
%>

这产生了 -

Started by user Matthew Armstrong
于 2013-08-06T09:10:05.420 回答