]> source.dussan.org Git - poi.git/commitdiff
use gradle for windows builds
authorAndreas Beeker <kiwiwings@apache.org>
Fri, 20 Aug 2021 20:53:13 +0000 (20:53 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Fri, 20 Aug 2021 20:53:13 +0000 (20:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892481 13f79535-47bb-0310-9956-ffa450edef68

jenkins/create_jobs.groovy

index 1c89a304d33ede45da42e9bff805c741c2f81f06..61770bf7024d6ef35c0844a6bb714f9b251afbe4 100644 (file)
@@ -437,15 +437,10 @@ poijobs.each { poijob ->
                 }
                 // For Jobs that should still have the default set of publishers we can configure different steps here
                 if(poijob.gradle) {
-                    // Gradle will not run any tests if the code is up-to-date, therefore manually mark the files as updated
-                    shellEx(delegate, 'touch --no-create build/*/build/test-results/TEST-*.xml build/*/build/test-results/test/TEST-*.xml', poijob)
-
-                    // this is a workaround until the Gradle build can do this compilation before invoking any
-                    // Ant script or when building via Ant is removed completely
-                    //ant {
-                    //    targets(['init'] + (poijob.properties ?: []))
-                    //    antInstallation(antRT)
-                    //}
+                    if (!poijob.windows) {
+                        // Gradle will not run any tests if the code is up-to-date, therefore manually mark the files as updated
+                        shellEx(delegate, 'touch --no-create build/*/build/test-results/TEST-*.xml build/*/build/test-results/test/TEST-*.xml', poijob)
+                    }
 
                     gradle {
                         tasks('clean jenkins')