Skip to content

Commit

Permalink
Add pattern for coverage files.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Apr 9, 2023
1 parent d44776c commit 3fd4d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/Jenkinsfile.analysis
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ node('java-agent') {
recordIssues tool: errorProne(), healthy: 1, unhealthy: 20

junit testResults: '**/target/*-reports/TEST-*.xml'
recordCoverage tools: [[parser: 'JACOCO']], sourceCodeRetention: 'EVERY_BUILD',
recordCoverage tools: [[parser: 'JACOCO', pattern: '**/jacoco/jacoco.xml']], sourceCodeRetention: 'EVERY_BUILD',
qualityGates: [ [threshold: 90.0, metric: 'LINE', baseline: 'PROJECT', criticality: 'UNSTABLE']],
sourceDirectories: [[path: 'plugin/src/main/java']]
recordIssues tools: [checkStyle(pattern: 'target/checkstyle-result.xml'),
Expand Down

0 comments on commit 3fd4d09

Please sign in to comment.