Skip to content
Snippets Groups Projects
Commit d86dfc0f authored by OZGCloud's avatar OZGCloud
Browse files

Fixed Problem mit nicht gefundenen Testergebnissen

parent 1ac538d1
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,8 @@ pipeline { ...@@ -52,6 +52,8 @@ pipeline {
container("quarkus-22"){ container("quarkus-22"){
configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) { configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) {
sh './mvnw -s $MAVEN_SETTINGS clean deploy -Dmaven.wagon.http.retryHandler.count=3' sh './mvnw -s $MAVEN_SETTINGS clean deploy -Dmaven.wagon.http.retryHandler.count=3'
junit testResults: '**/target/surefire-reports/*.xml', skipPublishingChecks: true
} }
} }
} }
...@@ -162,9 +164,6 @@ pipeline { ...@@ -162,9 +164,6 @@ pipeline {
} }
post { post {
always{
junit testResults: '**/target/surefire-reports/*.xml', skipPublishingChecks: true
}
failure { failure {
script { script {
if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME == 'release') { if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME == 'release') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment