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