guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: ci: Add custom subset.


From: guix-commits
Subject: 03/03: ci: Add custom subset.
Date: Wed, 28 Apr 2021 05:58:49 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit f97e220b45aba1c10f155e760667df7ef4cae382
Author: Mathieu Othacehe <othacehe@gnu.org>
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

[Prev in Thread] Current Thread [Next in Thread]