blob: b05cd2b10038180c74a1e7242cb852c27819e58c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
|
(define-module (guix-qa-frontpage manage-builds)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-71)
#:use-module (ice-9 match)
#:use-module (ice-9 streams)
#:use-module (ice-9 threads)
#:use-module (guix sets)
#:use-module (guix-build-coordinator utils)
#:use-module (guix-build-coordinator client-communication)
#:use-module (guix-qa-frontpage database)
#:use-module (guix-qa-frontpage branch)
#:use-module (guix-qa-frontpage patchwork)
#:use-module (guix-qa-frontpage git-repository)
#:use-module (guix-qa-frontpage guix-data-service)
#:use-module (guix-qa-frontpage manage-patch-branches)
#:export (%systems-to-submit-builds-for
builds-missing-for-derivation-changes?
submit-builds-for-issue
default-branch-priority-for-change
submit-builds-for-branch
start-submit-patch-builds-thread
start-submit-branch-builds-thread
start-submit-master-branch-system-tests-thread))
(define %systems-to-submit-builds-for
'("x86_64-linux"
"i686-linux"
"aarch64-linux"
"armhf-linux"
"powerpc64le-linux"
"i586-gnu"))
(define* (submit-builds-for-issue
database
build-coordinator
guix-data-service
issue-number
#:key priority
build-limit)
(simple-format
#t
"considering submitting builds for issue ~A\n"
issue-number)
(let ((derivation-changes-url
(and=>
(get-issue-branch-base-and-target-refs issue-number)
(lambda (base-and-target-refs)
(revision-derivation-changes-url
base-and-target-refs
#:systems %systems-to-submit-builds-for)))))
(if derivation-changes-url
(let ((derivation-changes-data
change-details
(with-exception-handler
(lambda (exn)
(simple-format
(current-error-port)
"failed fetching derivation changes for issue ~A: ~A\n"
issue-number
exn)
(values #f #f))
(lambda ()
(with-sqlite-cache
database
'derivation-changes
revision-derivation-changes
#:args
(list derivation-changes-url)
#:ttl (* 60 20)))
#:unwind? #t)))
(when derivation-changes-data
(let ((target-commit
(assoc-ref
(assoc-ref
(assoc-ref change-details
"revisions")
"target")
"commit")))
(submit-builds-for-category build-coordinator
guix-data-service
'issue
issue-number
derivation-changes-data
target-commit
#:build-limit build-limit
#:priority priority
#:build-count-priority-penalty
(lambda (build-count)
(cond
((< build-count 10) 0)
((< build-count 100) 50)
((< build-count 300) 100)
(else 150)))))))
(simple-format #t "no derivation changes url for issue ~A\n"
issue-number))))
(define* (start-submit-patch-builds-thread database
build-coordinator
guix-data-service
#:key (series-count 200))
(define (priority-for-change change)
(if (member (assoc-ref change "system")
'("x86_64-linux" "aarch64-linux"))
550
350))
(define (submit-builds)
(simple-format #t "submitting patch builds\n")
(let ((series (with-sqlite-cache
database
'latest-patchwork-series-by-issue
latest-patchwork-series-by-issue
#:ttl 3000)))
(n-par-for-each
4
(match-lambda
((issue-number . _)
(submit-builds-for-issue
database
build-coordinator
guix-data-service
issue-number
#:priority priority-for-change
#:build-limit
(* (length %systems-to-submit-builds-for)
100))))
(take series series-count))))
(call-with-new-thread
(lambda ()
(while #t
(with-exception-handler
(lambda (exn)
(simple-format
(current-error-port)
"exception in submit patch builds thread: ~A\n"
exn))
(lambda ()
(with-throw-handler #t
(lambda ()
(let* ((master-branch-substitute-availability
(with-sqlite-cache
database
'master-branch-data
master-branch-data
#:ttl 6000))
(systems-with-low-substitute-availability
(get-systems-with-low-substitute-availability
master-branch-substitute-availability
(delete "i586-gnu"
%systems-to-submit-builds-for
string=?))))
(if (null? systems-with-low-substitute-availability)
(submit-builds)
(sleep 900))))
(lambda args
(display (backtrace) (current-error-port))
(newline (current-error-port)))))
#:unwind? #t)
(sleep 300)))))
(define (default-branch-priority-for-change change)
(if (member (assoc-ref change "system")
'("x86_64-linux" "aarch64-linux"))
100
0))
(define* (submit-builds-for-branch database
build-coordinator
guix-data-service
branch
#:key build-limit
(priority default-branch-priority-for-change)
(systems %systems-to-submit-builds-for))
(simple-format #t
"considering submitting builds for branch ~A\n"
branch)
(let* ((branch-commit
(get-commit
(string-append "origin/" branch)))
(merge-base
(get-git-merge-base
(get-commit "origin/master")
branch-commit))
(revisions
`((base . ,merge-base)
(target . ,branch-commit)))
(derivation-changes-url
(revision-derivation-changes-url
revisions
#:systems %systems-to-submit-builds-for)))
(if derivation-changes-url
(let ((derivation-changes-data
change-details
(with-sqlite-cache
database
'branch-derivation-changes
revision-derivation-changes
#:args
(list derivation-changes-url)
#:ttl 0)))
(when derivation-changes-data
(let ((target-commit
(assoc-ref
(assoc-ref
(assoc-ref change-details
"revisions")
"target")
"commit")))
(submit-builds-for-category build-coordinator
guix-data-service
'branch
branch
derivation-changes-data
target-commit
#:priority priority
#:threads 4))))
(simple-format #t "no derivation changes url for branch ~A\n"
branch))))
(define (start-submit-branch-builds-thread database
build-coordinator
guix-data-service)
(define (submit-builds)
(simple-format #t "submitting branch builds\n")
(let ((branches '()))
(for-each
(lambda (branch)
(submit-builds-for-branch
database
build-coordinator
guix-data-service
branch))
branches)))
(call-with-new-thread
(lambda ()
(while #t
(with-exception-handler
(lambda (exn)
(simple-format
(current-error-port)
"exception in submit branch builds thread: ~A\n"
exn))
(lambda ()
(with-throw-handler #t
submit-builds
(lambda args
(display (backtrace) (current-error-port))
(newline (current-error-port)))))
#:unwind? #t)
(sleep 3600)))))
(define* (submit-build build-coordinator guix-data-service derivation
#:key (priority 0) (tags '()))
(retry-on-error
(lambda ()
(let ((response
(send-submit-build-request
build-coordinator
derivation
(list guix-data-service)
#f
priority
#t
#t
#t
tags)))
(let ((no-build-submitted-response
(assoc-ref response "no-build-submitted")))
(if no-build-submitted-response
(simple-format #t "skipped: ~A\n"
no-build-submitted-response)
(simple-format #t "build submitted as ~A\n"
(assoc-ref response "build-submitted"))))))
;; The TTL Guix uses for transient failures fetching substitutes is 10
;; minutes, so we need to retry for longer than that
#:times 30
#:delay 30))
(define (for-each-build build-coordinator proc . criteria)
(define (process-batch)
(stream-for-each
(lambda (build result)
(proc build)
(+1 result))
0
(apply request-builds-list
build-coordinator
criteria)))
(let loop ((batch-size (process-batch)))
(unless (= 0 batch-size)
(loop (process-batch)))))
(define (cancel-builds-not-for-revision build-coordinator
category-name
category-value
revision
build-ids-to-keep-set)
(simple-format (current-error-port)
"canceling builds for ~A ~A and not revision ~A\n"
category-name
category-value
revision)
(for-each-build
build-coordinator
(lambda (build-details)
(unless (set-contains?
build-ids-to-keep-set
(assoc-ref build-details "uuid"))
(retry-on-error
(lambda ()
(send-cancel-build-request build-coordinator
(assoc-ref build-details "uuid")))
#:times 6
#:delay 15)
(simple-format (current-error-port)
"canceled ~A\n"
(assoc-ref build-details "uuid"))))
#:tags
`(((key . category)
(value . package))
((key . ,category-name)
(value . ,category-value)))
#:not-tags
`(((key . revision)
(value . ,revision)))
#:canceled #f
#:processed #f
#:relationship 'no-dependent-builds))
(define (builds-missing-for-derivation-changes? derivation-changes)
(any
(lambda (change)
(if (and (string=? (assoc-ref change "target")
"")
(member (assoc-ref change "system")
%systems-to-submit-builds-for))
(if (= (vector-length
(assoc-ref change "builds"))
0)
#t
#f)
#f))
(append-map! (lambda (package)
(vector->list
(assoc-ref package "target")))
derivation-changes)))
(define* (submit-builds-for-category build-coordinator
guix-data-service
category-name
category-value
derivation-changes
target-commit
#:key build-limit
priority
(build-count-priority-penalty (const 0))
(threads 1))
(define (submit-builds build-details
build-ids-to-keep-set)
(define submit-single
(match-lambda
((derivation priority)
(submit-build build-coordinator
guix-data-service
derivation
#:priority priority
#:tags
`(((key . category)
(value . package))
((key . ,category-name)
(value . ,category-value))
((key . revision)
(value . ,target-commit)))))))
(if (= threads 1)
(for-each
submit-single
build-details)
(n-par-for-each
threads
submit-single
build-details))
(cancel-builds-not-for-revision
build-coordinator
category-name
category-value
target-commit
build-ids-to-keep-set))
(let loop ((changes
(append-map! (lambda (package)
(vector->list
(assoc-ref package "target")))
derivation-changes))
(builds-to-submit-details '())
(build-ids-to-keep-set (set)))
(if (null? changes)
(let ((builds-to-submit-count
(length builds-to-submit-details)))
(simple-format #t "~A target derivations for ~A ~A\n"
builds-to-submit-count
category-name
category-value)
(if (or (not build-limit)
(< builds-to-submit-count
build-limit))
(submit-builds (let ((priority-penalty
(build-count-priority-penalty
builds-to-submit-count)))
(if (= 0 priority-penalty)
builds-to-submit-details
(map
(match-lambda
((derivation priority)
(list derivation
(- priority priority-penalty))))
builds-to-submit-details)))
build-ids-to-keep-set)
(simple-format #t "skipping ~A ~A as too many target derivations (~A)\n"
category-name
category-value
builds-to-submit-count)))
(let ((change (first changes)))
(if (and (string=? (assoc-ref change "target")
"")
(member (assoc-ref change "system")
%systems-to-submit-builds-for))
(loop (cdr changes)
(if (= (vector-length
(assoc-ref change "builds"))
0)
(cons
(list (assoc-ref change "derivation-file-name")
(if (number? priority)
priority
(priority change)))
builds-to-submit-details)
builds-to-submit-details) ; build exists
(fold (lambda (build result)
(if (member (assoc-ref build "status")
'("scheduled" "started"))
(set-insert
(assoc-ref build "build_server_build_id")
result)
result))
build-ids-to-keep-set
(vector->list
(assoc-ref change "builds"))))
(loop (cdr changes)
builds-to-submit-details
build-ids-to-keep-set))))))
(define %system-tests-that-change-every-revision
'("btrfs-raid10-root-os"
"btrfs-raid10-root-os-degraded"
"btrfs-raid-root-os"
"btrfs-root-on-subvolume-os"
"btrfs-root-os"
"docker-system"
"encrypted-home-os"
"encrypted-root-not-boot-os"
"encrypted-root-os"
"f2fs-root-os"
"gui-installed-desktop-os-encrypted"
"gui-installed-os"
"gui-installed-os-encrypted"
"gui-uefi-installed-os"
"installed-extlinux-os"
"installed-os"
"iso-image-installer"
"jfs-root-os"
"lvm-separate-home-os"
"raid-root-os"
"separate-home-os"
"separate-store-os"
"xfs-root-os"))
(define (start-submit-master-branch-system-tests-thread database
build-coordinator
guix-data-service)
(define %systems
'())
(define (submit-builds)
(simple-format #t "submitting system test builds\n")
(let* ((processed-revision-commits
(filter-map
(lambda (revision-details)
(if (assoc-ref revision-details "data_available")
(assoc-ref revision-details "commit-hash")
#f))
(branch-revisions
(branch-revisions-url 2 "master"))))
(recent-processed-revision-commits
(if (> (length processed-revision-commits)
5)
(take processed-revision-commits 5)
5)))
(for-each
(lambda (commit)
(for-each
(lambda (system)
(let* ((system-tests
(revision-system-tests
(revision-system-tests-url
commit #:system system))))
(for-each
(lambda (system-test-details)
(let ((name
(assoc-ref system-test-details "name"))
(builds
(assoc-ref system-test-details "builds")))
(when (and (not
(member name
%system-tests-that-change-every-revision))
(= (vector-length builds) 0))
(submit-build build-coordinator
guix-data-service
(assoc-ref system-test-details "derivation")
#:tags
`(((key . category)
(value . system-test))
((key . branch)
(value . master))
((key . revision)
(value . ,commit)))))))
system-tests)))
%systems))
recent-processed-revision-commits)))
(call-with-new-thread
(lambda ()
(while #t
(with-exception-handler
(lambda (exn)
(simple-format
(current-error-port)
"exception in submit system test builds thread: ~A\n"
exn))
(lambda ()
(with-throw-handler #t
submit-builds
(lambda args
(display (backtrace) (current-error-port))
(newline (current-error-port)))))
#:unwind? #t)
(sleep 3600)))))
|