summaryrefslogtreecommitdiffstats
path: root/jenkins
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2022-12-30 08:11:43 +0000
committerDominik Stadler <centic@apache.org>2022-12-30 08:11:43 +0000
commitb5e2f2ee5d3b2708b060890277015e51cc74dbb4 (patch)
treedda0b94f6150091972884dd9c84148f555b4e30e /jenkins
parent1f15bf5b1560f453a74f615abe4eb49944d0af38 (diff)
downloadpoi-b5e2f2ee5d3b2708b060890277015e51cc74dbb4.tar.gz
poi-b5e2f2ee5d3b2708b060890277015e51cc74dbb4.zip
Jenkins DSL: Adjust links and comment out publishing "warnings" as the plugin is not installed
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1906278 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'jenkins')
-rw-r--r--jenkins/create_jobs.groovy10
1 files changed, 6 insertions, 4 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy
index 028da75935..b0fbd37746 100644
--- a/jenkins/create_jobs.groovy
+++ b/jenkins/create_jobs.groovy
@@ -204,9 +204,9 @@ def apicheckDesc = '''
def sonarDesc = '''
<p>
-<b><a href="lastSuccessfulBuild/findbugsResult/" target="_blank">Findbugs report of latest build</a></b> -
+<b><a href="/lastSuccessfulBuild/spotbugs/" target="_blank">Findbugs report of latest build</a></b> -
<b><a href="https://sonarcloud.io/dashboard?id=poi-parent" target="_blank">Sonar reports</a></b> -
-<b><a href="lastSuccessfulBuild/artifact/build/coverage/index.html" target="_blank">Coverage of latest build</a></b>
+<b><a href="lastSuccessfulBuild/jacoco/" target="_blank">Coverage of latest build</a></b>
</p>
'''
@@ -494,9 +494,10 @@ poijobs.each { poijob ->
}
// in archive, junit and jacoco publishers, matches beneath build/*/build/... are for Gradle-build results
archiveArtifacts('build/dist/*.zip,build/dist/*.tgz,build/dist/maven/*/*.jar,build/coverage/**,*/build/reports/*.bom.*,build/hs_err*.log')
+ /* this plugin is currently missing on the Apache Jenkins instance
warnings(['Java Compiler (javac)', 'JavaDoc Tool'], null) {
resolveRelativePaths()
- }
+ } */
archiveJunit('*/build/test-results/**/TEST-*.xml') {
testDataPublishers {
publishTestStabilityData()
@@ -624,9 +625,10 @@ xmlbeansjobs.each { xjob ->
publishers {
archiveArtifacts('build/libs/xmlbeans*.jar,build/distributions/*,build/reports/*.bom.*,build/hs_err*.log')
+ /* this plugin is currently missing on the Apache Jenkins instance
warnings(['Java Compiler (javac)', 'JavaDoc Tool'], null) {
resolveRelativePaths()
- }
+ } */
archiveJunit('build/test-results/test/TEST-*.xml') {
testDataPublishers {
publishTestStabilityData()