ccm-docs
Jens Pelzetter 2020-08-16 14:01:42 +02:00
parent 09045e47b5
commit b0ca16a9d0
1 changed files with 4 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -40,7 +40,10 @@ pipeline {
body: "Build ${env.BUILD_URL} failed." body: "Build ${env.BUILD_URL} failed."
} }
always { always {
junit allowEmptyResults: true testResults: '**/target/surefire-reports/*.xml' junit {
allowEmptyResults: true
testResults: '**/target/surefire-reports/*.xml'
}
recordIssues enabledForFailure: true, tools: [java(), javaDoc()] recordIssues enabledForFailure: true, tools: [java(), javaDoc()]
recordIssues enabledForFailure: false, tool: spotBugs() recordIssues enabledForFailure: false, tool: spotBugs()