Move to a regulated triggering technique and add module stable branch
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Thu, 9 Jul 2015 16:28:22 +0000 (12:28 -0400)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Thu, 9 Jul 2015 16:28:22 +0000 (12:28 -0400)
dsl/kernel-lttng-modules.seed.groovy

index cda7973ead1754e0d2fd1ed5811a211bec04ce61..e10d2264c38eb8255bfdc3e85f9046d231c15970 100644 (file)
@@ -88,7 +88,7 @@ class BasicVersion implements Comparable<BasicVersion> {
 }
 
 def kernelTagCutOff = new BasicVersion("2.6.36", "")
-def modulesBranches = ["master"]
+def modulesBranches = ["master", "stable-2.5", "stable-2.6"]
 
 //def modulesBranches = ["master","stable-2.5","stable-2.6", "stable-2.4"]
 
@@ -311,36 +311,39 @@ import java.util.concurrent.CancellationException
 def jobs = hudson.model.Hudson.instance.items
 def fail = false
 def jobStartWith = "JOBPREFIX"
+def toBuild = []
+def counter = 0
 
 def anotherBuild
 jobs.each { job ->
-  def jobName = job.getName()
-  if (jobName.startsWith(jobStartWith)) {
-    def lastBuild = job.getLastBuild()
-    if (lastBuild == null) {
-      try {
-        def future = job.scheduleBuild2(0, new Cause.UpstreamCause(build))
-        println "\\tWaiting for the completion of " + HyperlinkNote.encodeTo('/' + job.url, job.fullDisplayName)
-        anotherBuild = future.get()
-      } catch (CancellationException x) {
-        throw new AbortException("\${job.fullDisplayName} aborted.")
-      }
-      println HyperlinkNote.encodeTo('/' + anotherBuild.url, anotherBuild.fullDisplayName) + " completed. Result was " + anotherBuild.result
-
-      build.result = anotherBuild.result
-      if (anotherBuild.result != Result.SUCCESS && anotherBuild.result != Result.UNSTABLE) {
-        // We abort this build right here and now.
-        fail = true
-        println("Build Failed")
-      }
-    } else {
-      println("\\tAlready built")
-    }
-  }
+       def jobName = job.getName()
+       if (jobName.startsWith(jobStartWith)) {
+               counter = counter + 1
+               toBuild.push(job)
+       }
+}
+
+// Get valid node
+def kernelEnabledNode = 0
+hudson.model.Hudson.instance.nodes.each { node ->
+       if (node.getLabelString().contains("kernel")){
+               kernelEnabledNode++
+       }
+}
+
+def ongoingBuild = []
+while (toBuild.size() != 0) {
+       if(ongoingBuild.size() <= (kernelEnabledNode.intdiv(2))) {
+               def job = toBuild.pop()
+               ongoingBuild.push(job.scheduleBuild2(0))
+               println "\\t trigering " + HyperlinkNote.encodeTo('/' + job.url, job.fullDisplayName)
+       } else {
+               ongoingBuild.removeAll{ it.isCancelled() || it.isDone() }
+       }
 }
 
 if (fail){
-  throw new AbortException("Some job failed")
+       throw new AbortException("Some job failed")
 }
 """
     if (isJenkinsInstance) {
This page took 0.023889 seconds and 4 git commands to generate.