jenkins 中的几个 checkstyle 报告
一个配置中是否可以有多个 Checkstyle 报告?
假设我想使用一组规则检查代码,并使用另一组规则进行测试。之后,我有两个 xml 报告,但只有一个 Publish Checkstyle 分析结果
可用。
我错过了什么还是根本无法做到?
Is it possible to have several Checkstyle reports in one configuration?
Let's say I want to check the code with one set of rules, and tests - with another. After that I have two xml-reports but only one Publish Checkstyle analysis results
is available.
Am I missing something or it is just impossible to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您勾选
发布 Checkstyle 分析结果
复选框时,应该会出现一个文本输入框。例如,假设您有target/checkstyle-code.xml
和target/checkstyle-tests.xml
文件作为两次单独的 Checkstyle 运行的结果,那么您可以输入target/checkstyle-*.xml
,两个 Checkstyle 结果将聚合到一份 Jenkins 报告中。When you tick the
Publish Checkstyle analysis results
checkbox, a text input box should appear. Assuming that you have, for example,target/checkstyle-code.xml
andtarget/checkstyle-tests.xml
files as the result of your two separate Checkstyle runs, then you can entertarget/checkstyle-*.xml
and the results from both of your Checkstyle results will be aggregated into one Jenkins report.