Skip to content

Commit b8f34f6

Browse files
committed
Make Jenkins complain on new warnings from the current PR
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.
1 parent 4ca541b commit b8f34f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pipeline {
3939
repository/target/repository/**')
4040
junit '**/target/surefire-reports/*.xml'
4141
discoverGitReferenceBuild referenceJob: 'eclipse.pde/master'
42-
recordIssues publishAllIssues: true, tools: [eclipse(name: 'Compiler and API Tools', pattern: '**/target/compilelogs/*.xml'), mavenConsole(), javaDoc()], qualityGates: [[threshold: 1, type: 'NEW', unstable: true]]
42+
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]]
4343
}
4444
}
4545
}

0 commit comments

Comments
 (0)