Update Jenkinsfile

This commit is contained in:
Kondam vinodh kumar reddy 2023-08-04 13:25:48 +05:30 committed by GitHub
parent 4666e630b2
commit f531905a03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -24,7 +24,7 @@ pipeline {
} }
stage('build') { stage('build') {
steps { steps {
archiveArtifacts artifacts: '**/target/surefire-reports/TEST-*.xml' archiveArtifacts artifacts: '**/target/surefire-reports/TEST-*.xml',
junit testResults: '**/target/surefire-reports/TEST-*.xml' junit testResults: '**/target/surefire-reports/TEST-*.xml'
} }
} }
@ -41,4 +41,4 @@ pipeline {
to: 'vinod@gmail.com' to: 'vinod@gmail.com'
} }
} }
} }