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 2021/04/06 20:23:44 UTC

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

Author: centic
Date: Tue Apr  6 20:23:44 2021
New Revision: 1888449

URL: http://svn.apache.org/viewvc?rev=1888449&view=rev
Log:
Enable Gradle Wrapper to avoid running with an unsupported local version

This may cause the strange "PrecompiledProjectScript" failures that we see currently

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=1888449&r1=1888448&r2=1888449&view=diff
==============================================================================
--- poi/trunk/jenkins/create_jobs.groovy (original)
+++ poi/trunk/jenkins/create_jobs.groovy Tue Apr  6 20:23:44 2021
@@ -395,7 +395,7 @@ poijobs.each { poijob ->
                     tasks('check')
                     tasks('jacocoTestReport')
                     tasks('sonarqube')
-                    useWrapper(false)
+                    useWrapper(true)
                 }
             }
             publishers {
@@ -416,7 +416,7 @@ poijobs.each { poijob ->
                 if(poijob.gradle) {
                     gradle {
                         tasks('check')
-                        useWrapper(false)
+                        useWrapper(true)
                     }
                 } else if (poijob.noScratchpad) {
                     ant {



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