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.
Asked
Active
Viewed 1,146 times
2 Answers
1
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.

mrooney
- 1,994
- 2
- 19
- 30
0
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.

Peter Schuetze
- 16,185
- 4
- 44
- 58
-
Thanks a lot, gave me good starting point to what I am going to do. – Blaise Aug 13 '10 at 12:47