jjb: Add more warnings filtering to scope jobs
[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 = []
af3990ed
MJ
183def matchStrs = [
184 ~/^refs\/tags\/(v[\d\.]+(-rt(\d+)-rebase))$/,
185]
186def blacklist = [
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]
197
198def kversionFactory = new RTKVersion()
199
200// Parse kernel versions
201def kverfloor = ""
202try {
203 kverfloor = kversionFactory.factory(kverfloor_raw)
204} catch (EmptyKVersionException e) {
205 kverfloor = kversionFactory.minKVersion()
206}
f3d8604b 207
af3990ed
MJ
208def kverceil = ""
209try {
210 kverceil = kversionFactory.factory(kverceil_raw)
211} catch (EmptyKVersionException e) {
212 kverceil = kversionFactory.maxKVersion()
213}
214
215// Build a sorted list of versions to build
216for (ref in refs) {
217 for (matchStr in matchStrs) {
218 def match = ref.getName() =~ matchStr
219 if (match && !blacklist.contains(match.group(1))) {
220 def v = kversionFactory.factory(match.group(1))
f3d8604b 221
af3990ed
MJ
222 if ((v >= kverfloor) && (v < kverceil)) {
223 kversions.add(v)
224 }
f3d8604b
MJ
225 }
226 }
227}
228
229kversions.sort()
f3d8604b 230
af3990ed
MJ
231switch (kverfilter) {
232 case 'stable-head':
233 // Keep only the head of each stable branch
234 println('Filter kernel versions to keep only the latest point release of each stable branch.')
235
236 for (i = 0; i < kversions.size(); i++) {
237 def curr = kversions[i]
238 def next = i < kversions.size() - 1 ? kversions[i + 1] : null
239
240 if (next != null) {
241 if (curr.isSameStable(next)) {
242 kversions.remove(i)
243 i--
244 }
245 }
246 }
247 break
248
249 default:
250 // No filtering of kernel versions
251 println('No kernel versions filtering selected.')
252 break
253}
254
255
f3d8604b
MJ
256println "Building the following kernel versions:"
257for (k in kversions) {
258 println k
259}
260
261// Debug: Stop build here
262//throw new InterruptedException()
263
264def joburl = HyperlinkNote.encodeTo('/' + job.url, job.fullDisplayName)
265
266def allBuilds = []
267def ongoingBuild = []
268def failedRuns = []
269def isFailed = false
af3990ed 270def similarJobQueued = 0;
f3d8604b
MJ
271
272// Loop while we have kernel versions remaining or jobs running
273while ( kversions.size() != 0 || ongoingBuild.size() != 0 ) {
274
275 if(ongoingBuild.size() < maxConcurrentBuild.toInteger() && kversions.size() != 0) {
276 def kversion = kversions.pop()
277 def job_params = [
278 new StringParameterValue('mversion', mversion),
a1ae361e 279 new StringParameterValue('ktag', kversion.toString()),
f3d8604b
MJ
280 new StringParameterValue('kgitrepo', kgitrepo),
281 ]
282
283 // Launch the parametrized build
284 def param_build = job.scheduleBuild2(0, new Cause.UpstreamCause(build), new ParametersAction(job_params))
285 println "triggering ${joburl} for the ${mversion} branch on kernel ${kversion}"
286
287 // Add it to the ongoing build queue
288 ongoingBuild.push(param_build)
289
290 } else {
291
292 println "Waiting... Queued: " + kversions.size() + " Running: " + ongoingBuild.size()
293 try {
af3990ed 294 Thread.sleep(10000)
f3d8604b
MJ
295 } catch(e) {
296 if (e in InterruptedException) {
297 build.setResult(hudson.model.Result.ABORTED)
298 throw new InterruptedException()
299 } else {
300 throw(e)
301 }
302 }
303
af3990ed 304 // Abort job if a newer instance is queued
bcf4d9d0
JR
305 similarJobQueued = Hudson.instance.queue.items.count{it.task.getFullDisplayName() == currentJobName}
306 if ( similarJobQueued > 0 ) {
bcf4d9d0
JR
307 build.setResult(hudson.model.Result.ABORTED)
308 throw new InterruptedException()
309 }
310
f3d8604b
MJ
311 def i = ongoingBuild.iterator()
312 while ( i.hasNext() ) {
313 currentBuild = i.next()
314 if ( currentBuild.isCancelled() || currentBuild.isDone() ) {
315 // Remove from queue
316 i.remove()
317
318 // Print results
319 def matrixParent = currentBuild.get()
320 allBuilds.add(matrixParent)
a1ae361e 321 def kernelStr = matrixParent.buildVariableResolver.resolve("ktag")
f3d8604b
MJ
322 println "${matrixParent.fullDisplayName} (${kernelStr}) completed with status ${matrixParent.result}"
323
324 // Process child runs of matrixBuild
325 def childRuns = matrixParent.getRuns()
326 for ( childRun in childRuns ) {
327 println "\t${childRun.fullDisplayName} (${kernelStr}) completed with status ${childRun.result}"
328 if (childRun.result != Result.SUCCESS) {
329 failedRuns.add(childRun)
330 isFailed = true
331 }
332 }
333 }
334 }
335 }
336}
337
338// Get log of failed runs
339for (failedRun in failedRuns) {
340 println "---START---"
341 failedRun.writeWholeLogTo(out)
342 println "---END---"
343}
344
345println "---Build report---"
346for (b in allBuilds) {
a1ae361e 347 def kernelStr = b.buildVariableResolver.resolve("ktag")
f3d8604b 348 println "${b.fullDisplayName} (${kernelStr}) completed with status ${b.result}"
7e02032c 349 // Cleanup builds
7e942863
MJ
350 try {
351 b.delete()
352 } catch (all) {}
f3d8604b
MJ
353}
354
355// Mark this build failed if any child build has failed
356if (isFailed) {
c5c05f73 357 build.setResult(hudson.model.Result.FAILURE)
f3d8604b
MJ
358}
359
360// EOF
This page took 0.037152 seconds and 4 git commands to generate.