mothacehe pushed a commit to branch master
in repository guix.

commit f97e220b45aba1c10f155e760667df7ef4cae382
Author: Mathieu Othacehe <[email protected]>
AuthorDate: Wed Apr 28 11:53:10 2021 +0200

    ci: Add custom subset.
    
    * gnu/ci.scm (cuirass-jobs): Add 'custom susbset.
---
 gnu/ci.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/ci.scm b/gnu/ci.scm
index 58423b6..8d3590b 100644
--- a/gnu/ci.scm
+++ b/gnu/ci.scm
@@ -528,6 +528,15 @@ valid."
          ('tarball
           ;; Build Guix tarball only.
           (tarball-jobs store system))
+         (('custom . modules)
+          ;; Build custom modules jobs only.
+          (append-map
+           (lambda (module)
+             (let ((proc (module-ref
+                          (resolve-interface module)
+                          'cuirass-jobs)))
+               (proc store arguments)))
+           modules))
          (('channels . channels)
           ;; Build only the packages from CHANNELS.
           (let ((all (all-packages)))

Reply via email to