Merge pull request 'simplecov-jenkins-output' (#17) from simplecov-jenkins-output into master

Reviewed-on: #17
pull/18/head
bucky 2023-10-07 09:27:01 -07:00
commit c874426f2e
1 changed files with 13 additions and 0 deletions

13
Jenkinsfile vendored
View File

@ -28,5 +28,18 @@ pipeline {
sh 'cucumber' sh 'cucumber'
} }
} }
stage('Report results') {
steps {
archive(includes: 'pkg/*.gem')
publishHTML (target: [
allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'coverage',
reportFiles: 'index.html',
reportName: 'Test Results',
reportTitles: 'Test Coverage'])
}
}
} }
} }