我正在尝试将静态分析工具插件Warnings Next Generation添加到我的管道Jenkinsfile中。
我遵循了他们在GitHub页面上写的内容
https://github.com/jenkinsci/warnings-ng-plugin/blob/master/doc/Documentation.md
但是当我尝试添加
post {
always {
junit testResults: '**/target/surefire-reports/TEST-*.xml'
recordIssues enabledForFailure: true, tools: [mavenConsole(), java(), javaDoc()]
recordIssues enabledForFailure: true, tool: checkStyle()
recordIssues enabledForFailure: true, tool: spotBugs()
recordIssues enabledForFailure: true, tool: cpd(pattern: '**/target/cpd.xml')
recordIssues enabledForFailure: true, tool: pmdParser(pattern: '**/target/pmd.xml')
}
}
然后构建它,构建失败并显示以下错误
无效的参数“工具”是否表示工具
我是Jenkins CI的新手,请帮助解决这个问题。