diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-04-28 11:53:10 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-04-28 11:53:33 +0200 |
commit | f97e220b45aba1c10f155e760667df7ef4cae382 (patch) | |
tree | 0e8df2d6614e8f5ec55f62934c6cd21b488bcd91 /gnu/ci.scm | |
parent | 3034f3d05bdd4e20fe07c329e41f831950d96f01 (diff) | |
download | guix-f97e220b45aba1c10f155e760667df7ef4cae382.tar.gz |
ci: Add custom subset.
* gnu/ci.scm (cuirass-jobs): Add 'custom susbset.
Diffstat (limited to 'gnu/ci.scm')
-rw-r--r-- | gnu/ci.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm index 58423b6911..8d3590bcdc 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))) |