获取 CruiseControl 描述性错误
我的 Cruisecontrol 运行两个 Nant 脚本,并使用 msbuild 进行构建。 Msbuild 失败但没有给出任何错误。有什么办法可以获取更多错误详细信息吗?以下是我配置发布者的方式。
<publishers>
<email from="[email protected]" mailhost="stat-server" includeDetails="TRUE">
<users>
....
</users>
My cruisecontrol runs two nant scripts and it builds by using msbuild. Msbuild is failing without giving any errors. Is there any way to get more error details? Below is how I have configured publishers.
<publishers>
<email from="[email protected]" mailhost="stat-server" includeDetails="TRUE">
<users>
....
</users>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我可以通过 Web 应用程序“查看构建日志”链接查看 CruiseControl.net 构建日志。它提供了构建过程的所有细节。
I can view the CruiseControl.net Build log through the web application "View Build Log" link. It gives all the details of the build process.
我通常从构建服务器上的命令行开始运行构建脚本。
您还可以使用详细程度开关运行 MSBuild,这会增加调试信息量。这至少会让您知道问题出在哪里,也许您的巡航控制服务器没问题。
I normally start of running the build scripts from the command line on your build server.
You can also run MSBuild with a verbosity switch, that increase the amount of debug information. That will at least give you a idea of where the problem lies, perhaps your cruise control server is fine.