@@ -29,12 +29,15 @@ pipeline {
2929 post {
3030 always {
3131 archiveArtifacts artifacts : ' .*log,**/target/**/.*log' , allowEmptyArchive : true
32- junit ' **/target/surefire-reports/TEST-*.xml'
32+ junit allowEmptyResults : true , testResults : ' **/target/surefire-reports/TEST-*.xml'
3333 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()]
3841 }
3942 }
4043 }
0 commit comments