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) | |
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 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))) |
