You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2016/09/27 10:10:14 UTC

svn commit: r1762437 - /sling/trunk/tooling/jenkins/create_jobs.groovy

Author: rombert
Date: Tue Sep 27 10:10:13 2016
New Revision: 1762437

URL: http://svn.apache.org/viewvc?rev=1762437&view=rev
Log:
SLING-6061 - Create per-module Jenkins jobs

- include JUnit test reports
- debug to find out why the JDK is not properly selected

Modified:
    sling/trunk/tooling/jenkins/create_jobs.groovy

Modified: sling/trunk/tooling/jenkins/create_jobs.groovy
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/jenkins/create_jobs.groovy?rev=1762437&r1=1762436&r2=1762437&view=diff
==============================================================================
--- sling/trunk/tooling/jenkins/create_jobs.groovy (original)
+++ sling/trunk/tooling/jenkins/create_jobs.groovy Tue Sep 27 10:10:13 2016
@@ -31,6 +31,8 @@ modules.each {
                 scm('H/15 * * * *')
             }
 
+            out.println("jdk key is " + it + " , mappings is " + jdkMapping + " , desired version is " + jdkMapping.get(it))
+
             jdk(jdkMapping.get(it))
 
             label('ubuntu1||ubuntu2||ubuntu4||ubuntu5||ubuntu6')
@@ -42,6 +44,10 @@ modules.each {
                    mavenInstallation("Maven 3.3.9") 
                 }
             }
+
+            publishers {
+                archiveJunit('**/target/surefire-reports/*.xml')
+            }
         }
     }
 }