-
Type:
Improvement
-
Resolution: Unresolved
-
Priority:
Major
-
Component/s: blueocean-plugin, htmlpublisher-plugin
-
Environment:Jenkins 2.19.4 (LTS)
Plugins affected
io.jenkins.blueocean:blueocean:1.0.0-b14
org.jenkins-ci.plugins:htmlpublisher:1.11
-
Blue Ocean 1.2
Ready for release
This improvement is completed and scheduled for release in 1.2. Check the roadmap page for updates.
Original request
I Have a really basic repo I wanted to test with Blue Ocean. As part of the build script
node {
stage('Cleanup') {
sh 'rm -rf ./*'
}
stage('Fetch from GitHub') {
sh 'git clone https://github.com/Lewiscowles1986/julid'
}
dir('julid') {
stage('Test') {
sh 'gradle test'
}
stage('Build') {
sh 'gradle build'
}
}
stage('Report Gathering') {
publishHTML([allowMissing: true, alwaysLinkToLastBuild: false, keepAll: true, reportDir: 'julid/build/reports/tests', reportFiles: 'index.html', reportName: 'JUnit Test Reports'])
publishHTML([allowMissing: true, alwaysLinkToLastBuild: false, keepAll: true, reportDir: 'julid/build/reports/jacoco', reportFiles: 'index.html', reportName: 'JaCoCo Coverage Reports'])
}
stage('Package') {
sh 'cd julid && gradle jar'
}
}
It still shows in the old UI but not in artifacts or any reports for the Blue Ocean. It's deliberately a really naive example as I am learning and testing new things
- relates to
-
JENKINS-42242 SauceLabs results not displayed on Blue Ocean
-
- Open
-
- links to