jjb: use linux-stable-rt for modules rt build
[lttng-ci.git] / scripts / lttng-modules / master-rt.groovy
CommitLineData
f3d8604b 1/**
af3990ed 2 * Copyright (C) 2016-2017 - Michael Jeanson <mjeanson@efficios.com>
f3d8604b
MJ
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18import hudson.model.*
19import hudson.AbortException
20import hudson.console.HyperlinkNote
21import java.util.concurrent.CancellationException
22import org.eclipse.jgit.api.Git
23import org.eclipse.jgit.lib.Ref
24
25
af3990ed
MJ
26class InvalidKVersionException extends Exception {
27 public InvalidKVersionException(String message) {
28 super(message)
29 }
30}
31
32class EmptyKVersionException extends Exception {
33 public EmptyKVersionException(String message) {
34 super(message)
35 }
36}
f3d8604b 37
af3990ed 38class RTKVersion implements Comparable<RTKVersion> {
f3d8604b 39
af3990ed
MJ
40 Integer major = 0
41 Integer majorB = 0
42 Integer minor = 0
43 Integer patch = 0
44 Integer rt = 0
f3d8604b 45
af3990ed
MJ
46 RTKVersion() {}
47
48 RTKVersion(version) {
f3d8604b
MJ
49 this.parse(version)
50 }
51
af3990ed
MJ
52 static RTKVersion minKVersion() {
53 return new RTKVersion("v0.0.0-rt0-rebase")
54 }
55
56 static RTKVersion maxKVersion() {
57 return new RTKVersion("v" + Integer.MAX_VALUE + ".0.0-rt0-rebase")
58 }
59
60 static RTKVersion factory(version) {
61 return new RTKVersion(version)
62 }
63
f3d8604b
MJ
64 def parse(version) {
65 this.major = 0
66 this.majorB = 0
67 this.minor = 0
68 this.patch = 0
2c1d386a 69 this.rt = 0
f3d8604b 70
af3990ed
MJ
71 if (!version) {
72 throw new EmptyKVersionException("Empty kernel version")
73 }
74
2c1d386a 75 def match = version =~ /^v(\d+)\.(\d+)(\.(\d+))?(\.(\d+))?(-rt(\d+)-rebase)$/
f3d8604b 76 if (!match) {
af3990ed 77 throw new InvalidKVersionException("Invalid kernel version: ${version}")
f3d8604b
MJ
78 }
79
80 Integer offset = 0;
81
82 // Major
83 this.major = Integer.parseInt(match.group(1))
84 if (this.major <= 2) {
85 offset = 2
86 this.majorB = Integer.parseInt(match.group(2))
87 }
88
89 // Minor
90 if (match.group(2 + offset) != null) {
91 this.minor = Integer.parseInt(match.group(2 + offset))
92 }
93
94 // Patch level
95 if (match.group(4 + offset) != null) {
96 this.patch = Integer.parseInt(match.group(4 + offset))
97 }
98
2c1d386a
MJ
99 // RT
100 this.rt = Integer.parseInt(match.group(8))
f3d8604b
MJ
101 }
102
af3990ed
MJ
103 // Return true if both version are of the same stable branch
104 Boolean isSameStable(RTKVersion o) {
105 if (this.major != o.major) {
106 return false
107 }
108 if (this.majorB != o.majorB) {
109 return false
110 }
111 if (this.minor != o.minor) {
112 return false
113 }
114
115 return true
116 }
117
118 @Override int compareTo(RTKVersion o) {
f3d8604b 119 if (this.major != o.major) {
af3990ed 120 return Integer.compare(this.major, o.major)
f3d8604b
MJ
121 }
122 if (this.majorB != o.majorB) {
af3990ed 123 return Integer.compare(this.majorB, o.majorB)
f3d8604b
MJ
124 }
125 if (this.minor != o.minor) {
af3990ed 126 return Integer.compare(this.minor, o.minor)
f3d8604b
MJ
127 }
128 if (this.patch != o.patch) {
af3990ed 129 return Integer.compare(this.patch, o.patch)
f3d8604b 130 }
af3990ed
MJ
131 if (this.rt != o.rt) {
132 return Integer.compare(this.rt, o.rt)
f3d8604b
MJ
133 }
134
135 // Same version
136 return 0;
137 }
138
139 String toString() {
140 String vString = "v${this.major}"
141
142 if (this.majorB > 0) {
143 vString = vString.concat(".${this.majorB}")
144 }
145
146 vString = vString.concat(".${this.minor}")
147
148 if (this.patch > 0) {
149 vString = vString.concat(".${this.patch}")
150 }
151
2c1d386a
MJ
152 if (this.rt > 0) {
153 vString = vString.concat("-rt${this.rt}-rebase")
f3d8604b
MJ
154 }
155 return vString
156 }
157}
158
159
160// Retrieve parameters of the current build
161def mversion = build.buildVariableResolver.resolve('mversion')
162def maxConcurrentBuild = build.buildVariableResolver.resolve('maxConcurrentBuild')
163def kgitrepo = build.buildVariableResolver.resolve('kgitrepo')
af3990ed
MJ
164def kverfloor_raw = build.buildVariableResolver.resolve('kverfloor')
165def kverceil_raw = build.buildVariableResolver.resolve('kverceil')
166def kverfilter = build.buildVariableResolver.resolve('kverfilter')
f3d8604b 167def job = Hudson.instance.getJob(build.buildVariableResolver.resolve('kbuildjob'))
bcf4d9d0 168def currentJobName = build.project.getFullDisplayName()
f3d8604b 169
af3990ed 170
f3d8604b
MJ
171// Get the out variable
172def config = new HashMap()
173def bindings = getBinding()
174config.putAll(bindings.getVariables())
175def out = config['out']
176
f3d8604b
MJ
177
178// Get tags from git repository
179def refs = Git.lsRemoteRepository().setTags(true).setRemote(kgitrepo).call();
180
181// Get kernel versions to build
182def kversions = []
c9c7c76b 183def tagMatchStrs = [
af3990ed
MJ
184 ~/^refs\/tags\/(v[\d\.]+(-rt(\d+)-rebase))$/,
185]
186def blacklist = [
c9c7c76b
MJ
187 ~/v4\.11\.8-rt5-rebase/,
188 ~/v4\.11\.9-rt6-rebase/,
189 ~/v4\.11\.9-rt7-rebase/,
190 ~/v4\.11\.12-rt8-rebase/,
191 ~/v4\.11\.12-rt9-rebase/,
192 ~/v4\.11\.12-rt10-rebase/,
193 ~/v4\.11\.12-rt11-rebase/,
194 ~/v4\.11\.12-rt12-rebase/,
195 ~/v4\.11\.12-rt13-rebase/,
196 ~/v3\.6.*-rebase/,
197 ~/v3\.8.*-rebase/,
af3990ed
MJ
198]
199
200def kversionFactory = new RTKVersion()
201
202// Parse kernel versions
203def kverfloor = ""
204try {
205 kverfloor = kversionFactory.factory(kverfloor_raw)
206} catch (EmptyKVersionException e) {
207 kverfloor = kversionFactory.minKVersion()
208}
f3d8604b 209
af3990ed
MJ
210def kverceil = ""
211try {
212 kverceil = kversionFactory.factory(kverceil_raw)
213} catch (EmptyKVersionException e) {
214 kverceil = kversionFactory.maxKVersion()
215}
216
217// Build a sorted list of versions to build
218for (ref in refs) {
c9c7c76b
MJ
219 for (tagMatchStr in tagMatchStrs) {
220 def tagMatch = ref.getName() =~ tagMatchStr
f3d8604b 221
c9c7c76b
MJ
222 if (tagMatch) {
223 def kversion_raw = tagMatch.group(1)
224 def blacklisted = false
225
226 // Check if the kversion is blacklisted
227 for (blackMatchStr in blacklist) {
228 def blackMatch = kversion_raw =~ blackMatchStr
229
230 if (blackMatch) {
231 blacklisted = true
232 break;
233 }
234 }
235
236 if (!blacklisted) {
237 def v = kversionFactory.factory(kversion_raw)
238
239 if ((v >= kverfloor) && (v < kverceil)) {
240 kversions.add(v)
241 }
af3990ed 242 }
f3d8604b
MJ
243 }
244 }
245}
246
247kversions.sort()
f3d8604b 248
c9c7c76b
MJ
249//println "Pre filtering kernel versions:"
250//for (k in kversions) {
251// println k
252//}
253
af3990ed
MJ
254switch (kverfilter) {
255 case 'stable-head':
256 // Keep only the head of each stable branch
257 println('Filter kernel versions to keep only the latest point release of each stable branch.')
258
259 for (i = 0; i < kversions.size(); i++) {
260 def curr = kversions[i]
261 def next = i < kversions.size() - 1 ? kversions[i + 1] : null
262
263 if (next != null) {
264 if (curr.isSameStable(next)) {
265 kversions.remove(i)
266 i--
267 }
268 }
269 }
270 break
271
272 default:
273 // No filtering of kernel versions
274 println('No kernel versions filtering selected.')
275 break
276}
277
278
f3d8604b
MJ
279println "Building the following kernel versions:"
280for (k in kversions) {
281 println k
282}
283
284// Debug: Stop build here
285//throw new InterruptedException()
286
287def joburl = HyperlinkNote.encodeTo('/' + job.url, job.fullDisplayName)
288
289def allBuilds = []
290def ongoingBuild = []
291def failedRuns = []
292def isFailed = false
af3990ed 293def similarJobQueued = 0;
f3d8604b
MJ
294
295// Loop while we have kernel versions remaining or jobs running
296while ( kversions.size() != 0 || ongoingBuild.size() != 0 ) {
297
298 if(ongoingBuild.size() < maxConcurrentBuild.toInteger() && kversions.size() != 0) {
299 def kversion = kversions.pop()
300 def job_params = [
301 new StringParameterValue('mversion', mversion),
a1ae361e 302 new StringParameterValue('ktag', kversion.toString()),
f3d8604b
MJ
303 new StringParameterValue('kgitrepo', kgitrepo),
304 ]
305
306 // Launch the parametrized build
307 def param_build = job.scheduleBuild2(0, new Cause.UpstreamCause(build), new ParametersAction(job_params))
308 println "triggering ${joburl} for the ${mversion} branch on kernel ${kversion}"
309
310 // Add it to the ongoing build queue
311 ongoingBuild.push(param_build)
312
313 } else {
314
315 println "Waiting... Queued: " + kversions.size() + " Running: " + ongoingBuild.size()
316 try {
af3990ed 317 Thread.sleep(10000)
f3d8604b
MJ
318 } catch(e) {
319 if (e in InterruptedException) {
320 build.setResult(hudson.model.Result.ABORTED)
321 throw new InterruptedException()
322 } else {
323 throw(e)
324 }
325 }
326
af3990ed 327 // Abort job if a newer instance is queued
bcf4d9d0
JR
328 similarJobQueued = Hudson.instance.queue.items.count{it.task.getFullDisplayName() == currentJobName}
329 if ( similarJobQueued > 0 ) {
bcf4d9d0
JR
330 build.setResult(hudson.model.Result.ABORTED)
331 throw new InterruptedException()
332 }
333
f3d8604b
MJ
334 def i = ongoingBuild.iterator()
335 while ( i.hasNext() ) {
336 currentBuild = i.next()
337 if ( currentBuild.isCancelled() || currentBuild.isDone() ) {
338 // Remove from queue
339 i.remove()
340
341 // Print results
342 def matrixParent = currentBuild.get()
343 allBuilds.add(matrixParent)
a1ae361e 344 def kernelStr = matrixParent.buildVariableResolver.resolve("ktag")
f3d8604b
MJ
345 println "${matrixParent.fullDisplayName} (${kernelStr}) completed with status ${matrixParent.result}"
346
347 // Process child runs of matrixBuild
348 def childRuns = matrixParent.getRuns()
349 for ( childRun in childRuns ) {
350 println "\t${childRun.fullDisplayName} (${kernelStr}) completed with status ${childRun.result}"
351 if (childRun.result != Result.SUCCESS) {
352 failedRuns.add(childRun)
353 isFailed = true
354 }
355 }
356 }
357 }
358 }
359}
360
361// Get log of failed runs
362for (failedRun in failedRuns) {
363 println "---START---"
364 failedRun.writeWholeLogTo(out)
365 println "---END---"
366}
367
368println "---Build report---"
369for (b in allBuilds) {
a1ae361e 370 def kernelStr = b.buildVariableResolver.resolve("ktag")
f3d8604b 371 println "${b.fullDisplayName} (${kernelStr}) completed with status ${b.result}"
7e02032c 372 // Cleanup builds
7e942863
MJ
373 try {
374 b.delete()
375 } catch (all) {}
f3d8604b
MJ
376}
377
378// Mark this build failed if any child build has failed
379if (isFailed) {
c5c05f73 380 build.setResult(hudson.model.Result.FAILURE)
f3d8604b
MJ
381}
382
383// EOF
This page took 0.039136 seconds and 4 git commands to generate.