You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2016/12/08 09:36:57 UTC

svn commit: r1773205 - /poi/trunk/jenkins/create_jobs.groovy

Author: centic
Date: Thu Dec  8 09:36:57 2016
New Revision: 1773205

URL: http://svn.apache.org/viewvc?rev=1773205&view=rev
Log:
Jenkins DSL: download findbugs manually because sourceforge now uses a SSL cihper that is not supported by JDK 6

Modified:
    poi/trunk/jenkins/create_jobs.groovy

Modified: poi/trunk/jenkins/create_jobs.groovy
URL: http://svn.apache.org/viewvc/poi/trunk/jenkins/create_jobs.groovy?rev=1773205&r1=1773204&r2=1773205&view=diff
==============================================================================
--- poi/trunk/jenkins/create_jobs.groovy (original)
+++ poi/trunk/jenkins/create_jobs.groovy Thu Dec  8 09:36:57 2016
@@ -11,7 +11,10 @@ H H * * 0
 '''
 
 def poijobs = [
-    [ name: 'POI-DSL-1.6', jdks: ['1.6'] 
+    [ name: 'POI-DSL-1.6', jdks: ['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 lib/findbugs-noUpdateChecks-2.0.3.zip http://downloads.sourceforge.net/project/findbugs/findbugs/2.0.3/findbugs-noUpdateChecks-2.0.3.zip?download='
     ],
     [ name: 'POI-DSL-1.8', jdks: ['1.8'], trigger: 'H */12 * * *',
         // ubuntu-4 repeatedely failed during Findbugs results collection
@@ -236,6 +239,9 @@ Apache POI - the Java API for Microsoft
                             antInstallation(defaultAnt)
                         }
                     } else {
+                        if(poijob.addShell) {
+                            shell(poijob.addShell)
+                        }
                         ant {
                             targets(['clean', 'jenkins'] + (poijob.properties ?: []))
                             prop('coverage.enabled', true)



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org