Skip to content

Commit

Permalink
Jenkins: publishHTML JaCoCo report
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Dec 6, 2022
1 parent b43ed17 commit 17437f9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Jenkinsfile
Expand Up @@ -35,6 +35,14 @@ pipeline {
}
success {
archiveArtifacts artifacts: 'target/repository/, **/target/work/data/.metadata/.log, **/site/jacoco-aggregate/'
publishHTML(target: [
allowMissing: false,
alwaysLinkToLastBuild: true,
keepAll: true,
reportDir: 'tests/org.eclipse.emf.parsley.tests.coverage/target/site/jacoco-aggregate',
reportFiles: 'index.html',
reportName: 'Jacoco HTML Report'
])
}
}
}

0 comments on commit 17437f9

Please sign in to comment.