Skip to content

Commit

Permalink
Make Jenkins complain on new warnings from the current PR
Browse files Browse the repository at this point in the history
That should prevent the need to manually reset the baseline when new
warning is introduced by previous PR or even due to change outside of
the project.
  • Loading branch information
akurtakov committed Jan 13, 2025
1 parent 4ca541b commit b8f34f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pipeline {
repository/target/repository/**')
junit '**/target/surefire-reports/*.xml'
discoverGitReferenceBuild referenceJob: 'eclipse.pde/master'
recordIssues publishAllIssues: true, tools: [eclipse(name: 'Compiler and API Tools', pattern: '**/target/compilelogs/*.xml'), mavenConsole(), javaDoc()], qualityGates: [[threshold: 1, type: 'NEW', unstable: true]]
recordIssues publishAllIssues: true, ignoreQualityGate: true, tools: [eclipse(name: 'Compiler and API Tools', pattern: '**/target/compilelogs/*.xml'), mavenConsole(), javaDoc()], qualityGates: [[threshold: 1, type: 'NEW', unstable: true]]
}
}
}
Expand Down

0 comments on commit b8f34f6

Please sign in to comment.