Browse Source

Jenkins DSL: Fix link to Spotbugs results some more

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1906321 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_2_4
Dominik Stadler 1 year ago
parent
commit
012bf1a99a
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      jenkins/create_jobs.groovy

+ 2
- 2
jenkins/create_jobs.groovy View File

@@ -56,7 +56,7 @@ def poijobs = [
[ name: 'POI-DSL-1.19', jdk: '1.19', trigger: triggerSundays, skipcigame: true, skipSpotbugs: true
],
// Jenkins on ci-builds.apache.org does not support spotbugs with a new enough version of asm for Java18+
[ name: 'POI-DSL-1.20', jdk: '1.20', trigger: triggerSundays, skipcigame: true, skipSpotbugs: true,
[ name: 'POI-DSL-1.20', jdk: '1.20', trigger: triggerSundays, skipcigame: true, skipSpotbugs: true,
// these two can be removed again when gradle supports JDK 20
useAnt: true, skipSourceBuild: true
],
@@ -204,7 +204,7 @@ def apicheckDesc = '''

def sonarDesc = '''
<p>
<b><a href="/lastSuccessfulBuild/spotbugs/" target="_blank">Findbugs report of latest build</a></b> -
<b><a href="lastSuccessfulBuild/spotbugs/" target="_blank">Spotbugs 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/jacoco/" target="_blank">Coverage of latest build</a></b>
</p>

Loading…
Cancel
Save