summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/ci.scm9
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm
index 58423b69110..8d3590bcdc8 100644
--- a/gnu/ci.scm
+++ b/gnu/ci.scm
@@ -528,6 +528,15 @@ valid."
528 ('tarball 528 ('tarball
529 ;; Build Guix tarball only. 529 ;; Build Guix tarball only.
530 (tarball-jobs store system)) 530 (tarball-jobs store system))
531 (('custom . modules)
532 ;; Build custom modules jobs only.
533 (append-map
534 (lambda (module)
535 (let ((proc (module-ref
536 (resolve-interface module)
537 'cuirass-jobs)))
538 (proc store arguments)))
539 modules))
531 (('channels . channels) 540 (('channels . channels)
532 ;; Build only the packages from CHANNELS. 541 ;; Build only the packages from CHANNELS.
533 (let ((all (all-packages))) 542 (let ((all (all-packages)))