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 2017/10/16 08:02:04 UTC

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

Author: rombert
Date: Mon Oct 16 08:02:04 2017
New Revision: 1812253

URL: http://svn.apache.org/viewvc?rev=1812253&view=rev
Log:
SLING - 7200 - Jenkins: stop rebuilding the launchpad on module update

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=1812253&r1=1812252&r2=1812253&view=diff
==============================================================================
--- sling/trunk/tooling/jenkins/create_jobs.groovy (original)
+++ sling/trunk/tooling/jenkins/create_jobs.groovy Mon Oct 16 08:02:04 2017
@@ -793,18 +793,6 @@ modules.each { module ->
     def deploy = true
 
     def downstreamProjects = module.downstream?: []
-    // assume that all modules from bundles and installer are deployed in the launchpad
-    // this might be a little to heavy right now since
-    //
-    // 1. Not all modules are at a snapshot version in the launchpad
-    // 2. Not all modules from those location are present in the launchpad
-    //
-    // but for now it's a good start
-    if ( module.location.startsWith('bundles/') ||
-        module.location.startsWith('installer/') ) {
-        downstreamProjects.add('launchpad/builder')
-    }
-
     def downstreamEntries = modules.findAll { downstreamProjects.contains(it.location) }
     def downstreamJobs = []