simplecov-jenkins-output #17

Merged
bucky merged 2 commits from simplecov-jenkins-output into master 2023-10-07 09:27:02 -07:00
1 changed files with 13 additions and 0 deletions

13
Jenkinsfile vendored
View File

@ -28,5 +28,18 @@ pipeline {
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'])
}
}
}
}