Add label node restriction definition on dynamic artifacts copy
[lttng-ci.git] / dsl / kernel-lttng-modules.seed.groovy
CommitLineData
017c762b
JR
1enum KernelVersioning {
2 MAJOR,MINOR,REVISION,BUILD
3}
4
81470b33 5class BasicVersion implements Comparable<BasicVersion> {
017c762b
JR
6 int major = -1
7 int minor = -1
8 int revision = -1
9 int build = -1
10 int rc = -1
5a67a345 11 String gitRefs
017c762b
JR
12
13 // Default Constructor
81470b33 14 BasicVersion() {}
017c762b 15
81470b33
JR
16 // Parse a version string of format X.Y.Z.W-A
17 BasicVersion(String version, String ref) {
5a67a345 18 gitRefs = ref
d11d0665 19 def tokenVersion
017c762b
JR
20 def token
21 if (version.contains('-')) {
22 // Release canditate
23 token = version.tokenize('-')
24 tokenVersion = token[0]
81470b33 25 if (token[1]?.isInteger()) {
017c762b
JR
26 rc = token[1].toInteger()
27 }
28 } else {
29 tokenVersion = version
30 }
31
32 tokenVersion = tokenVersion.tokenize('.')
33
34 def tagEnum = KernelVersioning.MAJOR
35 tokenVersion.each {
81470b33 36 if (it?.isInteger()) {
017c762b
JR
37 switch (tagEnum) {
38 case KernelVersioning.MAJOR:
39 major = it.toInteger()
40 tagEnum = KernelVersioning.MINOR
41 break
42 case KernelVersioning.MINOR:
43 minor = it.toInteger()
44 tagEnum = KernelVersioning.REVISION
45 break
46 case KernelVersioning.REVISION:
47 revision = it.toInteger()
48 tagEnum = KernelVersioning.BUILD
49 break
50 case KernelVersioning.BUILD:
51 build = it.toInteger()
52 tagEnum = -1
53 break
54 default:
55 println("Unsupported version extension")
56 println("Trying to parse: ${version}")
57 println("Invalid sub version value: ${it}")
d11d0665 58 //TODO: throw exception for jenkins
017c762b
JR
59 }
60 }
61 }
62 }
63
017c762b
JR
64 String print() {
65 String ret = ""
66 if (major != -1) {
67 ret += major
68 if (minor != -1) {
69 ret += "." + minor
70 if (revision != -1) {
71 ret += "." + revision
72 if (build != -1) {
73 ret += "." + build
74 }
75 }
76 }
77 if (rc != -1) {
5a67a345 78 ret += "-rc" + rc
017c762b
JR
79 }
80 }
81 return ret
82 }
83
84 @Override
81470b33 85 int compareTo(BasicVersion kernelVersion) {
017c762b
JR
86 return major <=> kernelVersion.major ?: minor <=> kernelVersion.minor ?: revision <=> kernelVersion.revision ?: build <=> kernelVersion.build ?: rc <=> kernelVersion.rc
87 }
88}
89
81b43564 90def kernelTagCutOff = new BasicVersion("2.6.36", "")
f6613988 91def modulesBranches = ["master", "stable-2.5", "stable-2.6"]
d11d0665 92
472505ab 93//def modulesBranches = ["master","stable-2.5","stable-2.6", "stable-2.4"]
d11d0665 94
017c762b
JR
95def linuxURL = "git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git"
96def modulesURL = "git://git.lttng.org/lttng-modules.git"
97
98// Linux specific variable
99String linuxCheckoutTo = "linux-source"
100String recipeCheckoutTo = "recipe"
101String modulesCheckoutTo = "lttng-modules"
102
103def linuxGitReference = "/home/jenkins/gitcache/linux-stable.git"
017c762b 104
d11d0665 105// Check if we are on jenkins
81f87da0
JR
106// Useful for outside jenkins devellopment related to groovy only scripting
107def isJenkinsInstance = binding.variables.containsKey('JENKINS_HOME')
108
132cba4a 109// Fetch tags and format
017c762b
JR
110// Split the string into sections based on |
111// And pipe the results together
132cba4a 112String process = "git ls-remote -t $linuxURL | cut -c42- | sort -V"
017c762b
JR
113def out = new StringBuilder()
114def err = new StringBuilder()
115Process result = process.tokenize( '|' ).inject( null ) { p, c ->
116 if( p )
117 p | c.execute()
118 else
119 c.execute()
120}
121
122result.waitForProcessOutput(out,err)
123
124if ( result.exitValue() == 0 ) {
125 def branches = out.readLines().collect {
d11d0665 126 // Scrap special string tag
5a67a345 127 it.replaceAll("\\^\\{\\}", '')
017c762b
JR
128 }
129
130 branches = branches.unique()
017c762b 131
81f87da0 132 List versions = []
017c762b 133 branches.each { branch ->
d11d0665
JR
134 def stripBranch = branch.replaceAll("rc", '').replaceAll(/refs\/tags\/v/,'')
135 BasicVersion kVersion = new BasicVersion(stripBranch, branch)
017c762b
JR
136 versions.add(kVersion)
137 }
138
81f87da0 139 // Sort the version via Comparable implementation of KernelVersion
017c762b
JR
140 versions = versions.sort()
141
132cba4a 142 // Find the version cutoff
d11d0665 143 def cutoffPos = versions.findIndexOf{(it.major >= kernelTagCutOff.major) && (it.minor >= kernelTagCutOff.minor) && (it.revision >= kernelTagCutOff.revision) && (it.build >= kernelTagCutOff.build) && (it.rc >= kernelTagCutOff.rc)}
017c762b 144
831d4383
JR
145 // If error set cutoff on last so no job are created
146 if (cutoffPos == -1) {
147 cutoffPos = versions.size()
148 }
017c762b
JR
149 // Get last version and include only last rc
150 def last
151 def lastNoRcPos
152 last = versions.last()
153 if (last.rc != -1) {
154 int i = versions.size()-1
155 while (i > -1 && versions[i].rc != -1 ) {
156 i--
157 }
158 lastNoRcPos = i + 1
159 } else {
160 lastNoRcPos = versions.size()
161 }
162
d11d0665 163 String modulesPrefix = "lttng-modules"
162a2360 164 String kernelPrefix = "dsl-kernel"
d11d0665 165 String separator = "-"
831d4383 166
07f90dd7
JR
167
168 println("CutOff index")
169 println(cutoffPos)
170
171
d11d0665 172 // Actual job creation
017c762b 173 for (int i = cutoffPos; i < versions.size() ; i++) {
81f87da0 174
d11d0665 175 // Only create for valid build
017c762b
JR
176 if ( (i < lastNoRcPos && versions[i].rc == -1) || (i >= lastNoRcPos)) {
177 println ("Preparing job for")
d11d0665
JR
178
179 String jobName = kernelPrefix + separator + versions[i].print()
180
181 // Generate modules job based on supported modules jobs
182 def modulesJob = [:]
183 modulesBranches.each { branch ->
184 modulesJob[branch] = modulesPrefix + separator + branch + separator + jobName
185 }
186
187 // Jenkins only dsl
017c762b 188 println(jobName)
d11d0665
JR
189 if (isJenkinsInstance) {
190 matrixJob("${jobName}") {
191 using("linux-master")
192 scm {
193 git {
194 remote {
195 url("${linuxURL}")
196 }
197 branch(versions[i].gitRefs)
198 shallowClone(true)
199 relativeTargetDir(linuxCheckoutTo)
200 reference(linuxGitReference)
201 }
202 }
203 publishers {
204 modulesJob.each {
205 downstream(it.value, 'SUCCESS')
206 }
207 }
208 }
209 }
210 // Corresponding Module job
ef0e4e86
JR
211 modulesJob.each { job ->
212 println("\t" + job.key + " " + job.value)
d11d0665 213 if (isJenkinsInstance) {
ef0e4e86 214 matrixJob(job.value) {
d11d0665
JR
215 using("modules")
216 multiscm {
217 git {
218 remote {
219 name(kernelPrefix)
220 url("${linuxURL}")
221 }
222 branch(versions[i].gitRefs)
223 shallowClone(true)
224 relativeTargetDir(linuxCheckoutTo)
225 reference(linuxGitReference)
226 }
227 git {
228 remote {
229 name(modulesPrefix)
230 url(modulesURL)
231 }
ef0e4e86 232 branch(job.key)
d11d0665
JR
233 relativeTargetDir(modulesCheckoutTo)
234 }
235 }
236 steps {
92d7d4cc 237 copyArtifacts("${jobName}/arch=\$arch,label=kernel", "linux-artifact/**", '', false, false) {
d11d0665
JR
238 latestSuccessful(true) // Latest successful build
239 }
240 shell(readFileFromWorkspace('lttng-modules/lttng-modules-dsl-master.sh'))
241 }
242 }
243 }
244 }
245 }
246 }
162a2360
JR
247
248 // Trigger generations
249 def dslTriggerKernel = """\
162a2360
JR
250import hudson.model.*
251import hudson.AbortException
252import hudson.console.HyperlinkNote
253import java.util.concurrent.CancellationException
c086345d 254import java.util.Random
162a2360
JR
255
256
c086345d 257Random random = new Random()
162a2360
JR
258def jobs = hudson.model.Hudson.instance.items
259def fail = false
30429e88
JR
260def jobStartWith = "dsl-kernel-"
261def toBuild = []
262def counter = 0
162a2360
JR
263
264def anotherBuild
265jobs.each { job ->
30429e88
JR
266 def jobName = job.getName()
267 if (jobName.startsWith(jobStartWith)) {
268 counter = counter + 1
269 def lastBuild = job.getLastBuild()
270 if (lastBuild == null || lastBuild.result != Result.SUCCESS) {
271 toBuild.push(job)
272 } else {
273 println("\\tAlready built")
274 }
275 }
276}
277
278println "Kernel total "+ counter
279println "Kernel to build "+ toBuild.size()
280
281
282def kernelEnabledNode = 0
283hudson.model.Hudson.instance.nodes.each { node ->
284 if (node.getLabelString().contains("kernel")){
285 kernelEnabledNode++
286 }
287}
288println "Nb of live kernel enabled build node "+ kernelEnabledNode
289
290def ongoingBuild = []
291
292while (toBuild.size() != 0) {
bf6dfdfc 293 if(ongoingBuild.size() <= (kernelEnabledNode.intdiv(2))) {
30429e88
JR
294 def job = toBuild.pop()
295 ongoingBuild.push(job.scheduleBuild2(0))
296 println "\\t trigering" + HyperlinkNote.encodeTo('/' + job.url, job.fullDisplayName)
297 } else {
974f7068 298 Thread.sleep(random.nextInt(120000))
30429e88
JR
299 ongoingBuild.removeAll{ it.isCancelled() || it.isDone() }
300 }
162a2360
JR
301}
302
c76d8fe2 303if (fail){
30429e88 304 throw new AbortException("Some job failed")
c76d8fe2
JR
305}
306"""
307 def dslTriggerModule = """\
308import hudson.model.*
309import hudson.AbortException
310import hudson.console.HyperlinkNote
311import java.util.concurrent.CancellationException
c086345d 312import java.util.Random
c76d8fe2
JR
313
314
c086345d 315Random random = new Random()
c76d8fe2
JR
316def jobs = hudson.model.Hudson.instance.items
317def fail = false
6a7fce90 318def jobStartWith = "JOBPREFIX"
f6613988
JR
319def toBuild = []
320def counter = 0
c76d8fe2
JR
321
322def anotherBuild
323jobs.each { job ->
f6613988
JR
324 def jobName = job.getName()
325 if (jobName.startsWith(jobStartWith)) {
326 counter = counter + 1
327 toBuild.push(job)
328 }
329}
330
331// Get valid node
332def kernelEnabledNode = 0
333hudson.model.Hudson.instance.nodes.each { node ->
334 if (node.getLabelString().contains("kernel")){
335 kernelEnabledNode++
336 }
337}
338
339def ongoingBuild = []
340while (toBuild.size() != 0) {
341 if(ongoingBuild.size() <= (kernelEnabledNode.intdiv(2))) {
342 def job = toBuild.pop()
343 ongoingBuild.push(job.scheduleBuild2(0))
344 println "\\t trigering " + HyperlinkNote.encodeTo('/' + job.url, job.fullDisplayName)
345 } else {
974f7068 346 Thread.sleep(random.nextInt(60000))
f6613988
JR
347 ongoingBuild.removeAll{ it.isCancelled() || it.isDone() }
348 }
c76d8fe2
JR
349}
350
162a2360 351if (fail){
f6613988 352 throw new AbortException("Some job failed")
162a2360
JR
353}
354"""
355 if (isJenkinsInstance) {
356 freeStyleJob("dsl-trigger-kernel") {
357 steps {
6f47f2cd 358 systemGroovyCommand(dslTriggerKernel)
162a2360 359 }
d585fdc4
JR
360 triggers {
361 cron("H 0 * * *")
362 }
c76d8fe2
JR
363 }
364
365 modulesBranches.each { branch ->
366 freeStyleJob("dsl-trigger-module-${branch}") {
367 steps {
6a7fce90 368 systemGroovyCommand(dslTriggerModule.replaceAll("JOBPREFIX",modulesPrefix + separator + branch + separator))
c76d8fe2 369 }
d585fdc4
JR
370 triggers {
371 scm('@daily')
372 }
c76d8fe2
JR
373 }
374 }
162a2360 375 }
017c762b 376}
This page took 0.039273 seconds and 4 git commands to generate.