Skip to content

Commit

Permalink
Update Jenkinsfile: reject ECJ warnings (#1069)
Browse files Browse the repository at this point in the history
  • Loading branch information
jukzi committed Jan 16, 2024
1 parent 24d4eae commit fe71a51
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ pipeline {
archiveArtifacts artifacts: '*.log,*/target/work/data/.metadata/*.log,*/tests/target/work/data/.metadata/*.log,apiAnalyzer-workspace/.metadata/*.log', allowEmptyArchive: true
junit '**/target/surefire-reports/*.xml'
discoverGitReferenceBuild referenceJob: 'eclipse.jdt.ui-github/master'
recordIssues tools: [eclipse(), mavenConsole(), javaDoc()]
recordIssues publishAllIssues:false, tools: [eclipse()], qualityGates: [[threshold: 1, type: 'DELTA_NORMAL', unstable: true]], minimumSeverity: 'NORMAL'
recordIssues publishAllIssues:false, tools: [javaDoc()], qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]]
recordIssues publishAllIssues:false, tools: [mavenConsole()], qualityGates: [[threshold: 1, type: 'DELTA_ERROR', unstable: true]]
}
}
}
Expand Down

0 comments on commit fe71a51

Please sign in to comment.