aboutsummaryrefslogtreecommitdiffstats
path: root/jenkins/create_jobs.groovy
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2017-09-22 20:06:31 +0000
committerDominik Stadler <centic@apache.org>2017-09-22 20:06:31 +0000
commit6e9afd88a21d8640f43f86f39015c2028a22bbe9 (patch)
treeb963e251b494aa6f727a5ea8f87d4edb3ac2aa3d /jenkins/create_jobs.groovy
parentfc0e5c0f221167d654613c0c6ebd9333ee281650 (diff)
downloadpoi-6e9afd88a21d8640f43f86f39015c2028a22bbe9.tar.gz
poi-6e9afd88a21d8640f43f86f39015c2028a22bbe9.zip
Remove Jobs for JDK 1.6/1.7, this should also make the findbugs-hacks obsolete here
The jobs still need to manually removed in Jenkins, though! git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1809348 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'jenkins/create_jobs.groovy')
-rw-r--r--jenkins/create_jobs.groovy25
1 files changed, 1 insertions, 24 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy
index 6873a302c2..70d3f18d4e 100644
--- a/jenkins/create_jobs.groovy
+++ b/jenkins/create_jobs.groovy
@@ -10,20 +10,10 @@ def triggerSundays = '''
H H * * 0
'''
-def findbugs2Url = 'http://downloads.sourceforge.net/project/findbugs/findbugs/2.0.3/findbugs-noUpdateChecks-2.0.3.zip?download='
-def findbugs2Lib = 'lib/findbugs-noUpdateChecks-2.0.3.zip'
-def findbugs3Url = 'http://downloads.sourceforge.net/project/findbugs/findbugs/3.0.1/findbugs-noUpdateChecks-3.0.1.zip?download='
-def findbugs3Lib = 'lib/findbugs-noUpdateChecks-3.0.1.zip'
def xercesUrl = 'http://repo1.maven.org/maven2/xerces/xercesImpl/2.6.1/xercesImpl-2.6.1.jar'
def xercesLib = 'compile-lib/xercesImpl-2.6.1.jar'
def poijobs = [
- [ name: 'POI-DSL-1.6', jdk: '1.6',
- // workaround as Sourceforge does not accept any of the SSL ciphers in JDK 6 any more and thus we cannot download this jar
- // as part of the Ant build
- addShell: "wget -O ${findbugs2Lib} ${findbugs2Url}",
- disabled: true
- ],
[ name: 'POI-DSL-1.8', trigger: 'H */12 * * *'
],
[ name: 'POI-DSL-OpenJDK', jdk: 'OpenJDK', trigger: 'H */12 * * *',
@@ -54,10 +44,7 @@ def poijobs = [
[ name: 'POI-DSL-old-Xerces', trigger: triggerSundays,
shell: "mkdir -p compile-lib && test -f ${xercesLib} || wget -O ${xercesLib} ${xercesUrl}\n",
// the property triggers using Xerces as XML Parser and previously showed some exception that can occur
- properties: ["-Dadditionaljar=${xercesLib}"],
- // workaround as Sourceforge does not accept any of the SSL ciphers in JDK 6 any more and thus we cannot download this jar
- // as part of the Ant build
- addShell: "wget -O ${findbugs2Lib} ${findbugs2Url}"
+ properties: ["-Dadditionaljar=${xercesLib}"]
],
[ name: 'POI-DSL-Maven', trigger: 'H */4 * * *', maven: true
],
@@ -76,14 +63,6 @@ def poijobs = [
],
[ name: 'POI-DSL-SonarQube-Gradle', trigger: 'H 9 * * *', gradle: true, sonar: true, skipcigame: true
],
- [ name: 'POI-DSL-Windows-1.6', jdk: '1.6', trigger: 'H */12 * * *', windows: true, slaves: 'Windows',
- addShell: "@if not exist ${findbugs2Lib} powershell -Command wget -Uri \"${findbugs2Url}\" -OutFile ${findbugs2Lib} -UserAgent [Microsoft.PowerShell.Commands.PSUsergAgent]::Chrome",
- disabled: true
- ],
- [ name: 'POI-DSL-Windows-1.7', jdk: '1.7', trigger: 'H */12 * * *', windows: true, slaves: 'Windows',
- addShell: "@if not exist ${findbugs3Lib} powershell -Command wget -Uri \"${findbugs3Url}\" -OutFile ${findbugs3Lib} -UserAgent [Microsoft.PowerShell.Commands.PSUsergAgent]::Chrome",
- disabled: true
- ],
[ name: 'POI-DSL-Windows-1.8', trigger: 'H */12 * * *', windows: true, slaves: 'Windows'
],
]
@@ -97,8 +76,6 @@ def defaultAnt = 'Ant 1.9.9'
def defaultSlaves = 'ubuntu&&!cloud-slave&&!H15&&!H17&&!H18&&!H24&&!ubuntu-4&&!H21'
def jdkMapping = [
- '1.6': 'JDK 1.6 (latest)',
- '1.7': 'JDK 1.7 (latest)',
'1.8': 'JDK 1.8 (latest)',
'1.9': 'JDK 1.9 (latest)',
'OpenJDK': 'OpenJDK 8 (on Ubuntu only) ', // blank is required here until the name in the Jenkins instance is fixed!