diff --git a/Jenkinsfile b/Jenkinsfile index a0997dc..a83b3f9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,6 @@ pipeline { post { always { echo 'One way or another, I have finished' - junit: 'testresults.xml' } success { echo 'I succeeeded!' @@ -31,7 +30,12 @@ pipeline { } } - } + stage('archiving test results') { + steps { + junit: 'testresults.xml' + } + } + } }