本文介绍了CruiseControl.net电子邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们让CruiseControl为我们做每晚构建。如果每晚构建失败,则会发送一封电子邮件。程序员将在他/她的更改中修复问题检查,然后进行强制构建。如果构建失败,则会再次发送电子邮件。

We have CruiseControl doing nightly builds for us. If the nightly build fails it sends out an email. The programmer will fix the problem check in his/her changes then do a force build. If the build fails then an email is sent again. Is there a way to not send email when a force build is pressed.

推荐答案

将以下内容添加到您的配置中

Add the following to your config

<modifierNotificationTypes>
    <NotificationType>Change</NotificationType>
</modifierNotificationTypes>

这篇关于CruiseControl.net电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 20:57