diff --git a/Jenkinsfile b/Jenkinsfile index 0f5672a..b9a7f28 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,22 +1,23 @@ pipeline { agent { dockerfile true } stages { stage('run tests') { steps { sh 'git submodule update --init' sh 'arc unit --rev HEAD^' } } } post { always { archiveArtifacts artifacts: '*.tap' + step([$class: "TapPublisher", testResults: "*.tap"]) } } }