You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2021/12/31 00:17:57 UTC

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

Author: kiwiwings
Date: Fri Dec 31 00:17:57 2021
New Revision: 1896562

URL: http://svn.apache.org/viewvc?rev=1896562&view=rev
Log:
update xmlbeans gradle calls

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=1896562&r1=1896561&r2=1896562&view=diff
==============================================================================
--- poi/trunk/jenkins/create_jobs.groovy (original)
+++ poi/trunk/jenkins/create_jobs.groovy Fri Dec 31 00:17:57 2021
@@ -113,6 +113,8 @@ def xmlbeansjobs = [
         [ name: 'POI-XMLBeans-DSL-1.8', jdk: '1.8', trigger: 'H */12 * * *', skipcigame: true,
         ],
         [ name: 'POI-XMLBeans-DSL-1.11', jdk: '1.11', trigger: triggerSundays, skipcigame: true,
+            // temporarily disabled until gradle build is stable on 1.8
+            disabled: true
         ],
         [ name: 'POI-XMLBeans-DSL-1.12', jdk: '1.12', trigger: triggerSundays, skipcigame: true,
           // let's save some CPU cycles here, 12 is not a LTS and JDK 13 is GA now
@@ -131,8 +133,12 @@ def xmlbeansjobs = [
           disabled: true
         ],
         [ name: 'POI-XMLBeans-DSL-1.17', jdk: '1.17', trigger: triggerSundays, skipcigame: true,
+          // temporarily disabled until gradle build is stable on 1.8
+          disabled: true
         ],
         [ name: 'POI-XMLBeans-DSL-1.18', jdk: '1.18', trigger: triggerSundays, skipcigame: true,
+          // temporarily disabled until gradle build is stable on 1.8
+          disabled: true
         ]
 ]
 
@@ -565,22 +571,27 @@ xmlbeansjobs.each { xjob ->
             if(xjob.addShell) {
                 shellEx(delegate, xjob.addShell, xjob)
             }
-            ant {
-                targets(['clean'])
-                antInstallation(antRT)
-            }
-            ant {
-                targets(['jenkins'])
-                antInstallation(antRT)
+
+            gradle {
+//                switches('-PenableSonar')
+//                switches('-Dsonar.login=${POI_SONAR_TOKEN}')
+//                switches('-Dsonar.organization=apache')
+//                switches('-Dsonar.projectKey=poi-parent')
+//                switches('-Dsonar.host.url=https://sonarcloud.io')
+                tasks('clean')
+                tasks('jenkins')
+                tasks('jacocoTestReport')
+//                tasks('sonarqube')
+                useWrapper(true)
             }
         }
         publishers {
-            archiveArtifacts('build/*.jar,build/*.zip,build/*.tgz,build/hs_err*.log')
+            archiveArtifacts('build/libs/xmlbeans*.jar,build/distributions/*,build/hs_err*.log')
 
             warnings(['Java Compiler (javac)', 'JavaDoc Tool'], null) {
                 resolveRelativePaths()
             }
-            archiveJunit('build/test-results/**/TEST-*.xml') {
+            archiveJunit('build/test-results/test/TEST-*.xml') {
                 testDataPublishers {
                     publishTestStabilityData()
                 }
@@ -588,7 +599,7 @@ xmlbeansjobs.each { xjob ->
             recordIssues {
                 tools {
                     spotBugs {
-                        pattern('build/findbugs.xml')
+                        pattern('build/reports/spotbugs/*/spotbugs.xml')
                         reportEncoding('UTF-8')
                     }
                 }



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