如何将 lcov 测试覆盖率工具与 Hudson 持续集成结合使用?
在我的环境中,开发人员在处理源代码的模块测试时从命令行使用 lcov。 我想知道是否有一种方法可以轻松地将 lcov 的报告添加到 Hudson 的构建中?我将简化并自动化收集测试源代码覆盖率的整个过程。
In my environment developers use lcov from command line when working with source code's module tests.
I would like to know if there is a way to easily add reports from lcov to Hudson's builds? I would ease and automate the whole procedure of gathering test source code coverage.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您希望将生成的 HTML 报告与您的作业/构建一起发布,请查看 htmlpublisher 插件:http://wiki.hudson-ci.org/display/HUDSON/HTML+Publisher+Plugin
这允许您指定多个 html 目录和索引文件,以便从作业或构建页面。
If you are looking to publish the generated HTML reports along with your job/builds, have a look at the htmlpublisher plugin: http://wiki.hudson-ci.org/display/HUDSON/HTML+Publisher+Plugin
This allows you to specify multiple html directories and index files to be made accessible from the job or build page.
查看 xUnit 插件。我在 this 中找到了信息线程。它包含有关使用 Hudson 构建 cpp 项目的更多信息。
Have a look at the xUnit Plugin. I found the info in this thread. It has more information for using Hudson to build cpp projects.