Continuous integration jenkins中的几个checkstyle报告

Continuous integration jenkins中的几个checkstyle报告,continuous-integration,jenkins,checkstyle,Continuous Integration,Jenkins,Checkstyle,是否可以在一个配置中有多个检查样式报告 假设我想用一组规则检查代码,并用另一组规则进行测试。之后,我有两个xml报告,但只有一个Publish Checkstyle分析结果可用 我是否遗漏了什么或根本无法完成?当您勾选“发布检查样式分析结果”复选框时,应该会出现一个文本输入框。例如,假设在两次单独的checkstyle运行后,您有target/checkstyle code.xml和target/checkstyle tests.xml文件,然后,您可以输入target/checkstyle-*

是否可以在一个配置中有多个检查样式报告

假设我想用一组规则检查代码,并用另一组规则进行测试。之后,我有两个xml报告,但只有一个
Publish Checkstyle分析结果可用


我是否遗漏了什么或根本无法完成?

当您勾选“发布检查样式分析结果”复选框时,应该会出现一个文本输入框。例如,假设在两次单独的checkstyle运行后,您有
target/checkstyle code.xml
target/checkstyle tests.xml
文件,然后,您可以输入
target/checkstyle-*.xml
,两个checkstyle结果的结果将聚合到一个Jenkins报告中。

是否可以不将这些结果聚合到一个checkstyle图中,而是有两个checkstyle图-每个checkstyle xml文件一个?我有一个checkstyle-php.xml和一个checkstyle-javascript.xml,希望能够分别可视化它们。@mostwated您知道如何获得两个不同的checkstyle图了吗?