jenkins: split Reporting stage into Test Results and Archiving

This commit is contained in:
Paul Campbell 2018-03-03 16:29:38 +00:00
parent 13b6ebd06d
commit fa63f2f104

View file

@ -32,9 +32,13 @@ pipeline {
} }
} }
} }
stage('Reporting') { stage('Test Results') {
steps { steps {
junit '**/target/surefire-reports/*.xml' junit '**/target/surefire-reports/*.xml'
}
}
stage('Archiving') {
steps {
archiveArtifacts '**/target/*.jar' archiveArtifacts '**/target/*.jar'
} }
} }