@@ -28,12 +28,15 @@ pipeline {
28
28
post {
29
29
always {
30
30
archiveArtifacts artifacts : ' *.log,**/target/**/*.log' , allowEmptyArchive : true
31
- junit ' **/target/surefire-reports/TEST-*.xml'
31
+ junit allowEmptyResults : true , testResults : ' **/target/surefire-reports/TEST-*.xml'
32
32
discoverGitReferenceBuild referenceJob : ' eclipse.platform.ui/master'
33
- recordIssues(publishAllIssues :false , ignoreQualityGate :true ,
34
- tool : eclipse(name : ' Compiler and API Tools' , pattern : ' **/target/compilelogs/*.xml' ),
35
- qualityGates : [[threshold : 1 , type : ' DELTA' , unstable : true ]])
36
- recordIssues publishAllIssues :false , tools : [mavenConsole(), javaDoc()]
33
+ recordIssues enabledForFailure : true , publishAllIssues :false , ignoreQualityGate :true ,
34
+ tools : [
35
+ eclipse(name : ' Compiler' , pattern : ' **/target/compilelogs/*.xml' ),
36
+ issues(name : ' API Tools' , id : ' apitools' , pattern : ' **/target/apianalysis/*.xml' )
37
+ ],
38
+ qualityGates : [[threshold : 1 , type : ' DELTA' , unstable : true ]]
39
+ recordIssues enabledForFailure : true , publishAllIssues :false , tools : [mavenConsole(), javaDoc()]
37
40
}
38
41
}
39
42
}
0 commit comments