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