diff --git a/Jenkinsfile b/Jenkinsfile index 20fcb5dc024490705e5c0ec7a27515869f23e7c0..44dc0aa3cd8fbce5c76bc780f97f0f7d52d2ef2b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -52,6 +52,8 @@ pipeline { container("quarkus-22"){ configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) { 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 { } post { - always{ - junit testResults: '**/target/surefire-reports/*.xml', skipPublishingChecks: true - } failure { script { if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME == 'release') {