Hello,
I'm quite new to Jenkins and workflow plugin, and I am trying to set up a task that publishes some HTML reports and violations. I know that there are opes issue against HTML reports plugin, but I dont know if 'violations-plugin' should work or I am doing something wrong. My code is something like:
node('worker') {
sh 'build violations' // <--- Will generate output/violations.xml file
step([$class: 'ViolationsPublisher', testResults: 'output/violations.xml'])
}
But when I try to run it, it simply crashes. I fear that there are some plugin incompatiblities.
Are there any existing and compatible checkstyle plugin with workflow?