Team City 命令行构建运行器
在 Team City 中,我们当前使用命令行构建运行器。虽然它工作得很好,但我们没有在 Team City 日志中看到任何输出。我们本质上会收到进程启动的通知,以及进程以特定退出代码退出的通知。
有没有办法将命令行调用的输出通过管道传输到日志,以便我们可以从 Team City UI 中看到它?
编辑:命令行调用仅针对 devenv.com。我在 NAnt 脚本中尝试了相同的调用,希望它能以某种方式捕获输出 - 但它没有。我需要直接调用 devenv 的原因是我们的解决方案中有一些安装项目。
编辑2:我已经重新启动了我们的构建服务器,并且输出现在正确地放入日志中。
In Team City, we are currently using a command line build runner. While it works just fine, we don't get any output shown in the Team City log. We essentially get a notification that the process started, and that the process exited with a particular exit code.
Is there a way to pipe the output of the command line call to the log so that we can see it from the Team City UI?
EDIT: The command line call is just to devenv.com. I tried the same call inside a NAnt script hoping that it would somehow catch the output -- and it didn't. The reason I need to call devenv directly is that we have a handful of setup projects inside our solution.
EDIT 2: I have restarted our build server, and output is now correctly being thrown into the log.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,构建日志有两部分——重要消息和所有消息。非错误消息通常会转到“所有消息”。
Actually, build log has two parts - important messages and all messages. Non-error messages usually go to "all messages".
重新启动构建服务器解决了问题。
Restarting the build server fixed the problem.