We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e4c69d commit cb54668Copy full SHA for cb54668
Jenkinsfile
@@ -19,10 +19,14 @@ pipeline {
19
stage('test project and serve') {
20
steps {
21
sh "docker-compose run --rm test"
22
- step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml'])
23
- step([$class: 'ArtifactArchiver', artifacts: '**/target/*.jar', fingerprint: true])
24
sh "docker-compose up -d server"
25
}
+ post {
+ always {
26
+ archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
27
+ junit '**/target/surefire-reports/TEST-*.xml'
28
+ }
29
30
31
stage('wait for confirm') {
32
input {
0 commit comments