nonguix/guix/nongnu/ci.scm
Jelle Licht 572a9fa4f7 Merge branch 'rework-structure' into 'master'
[WIP] Quality of Life for hacking on nonguix

See merge request nonguix/nonguix!135
2023-03-27 13:42:28 +00:00

24 lines
657 B
Scheme

;;; SPDX-License-Identifier: GPL-3.0-or-later
;;; Copyright © 2021 Mathieu Othacehe <m.othacehe@gmail.com>
(define-module (nongnu ci)
#:use-module (gnu ci)
#:use-module (gnu system image)
#:use-module (nongnu system install)
#:use-module (srfi srfi-1)
#:export (cuirass-jobs))
(define (cuirass-jobs store arguments)
(define systems
(arguments->systems arguments))
(append-map
(lambda (system)
(list
(image->job store
(image-with-os iso9660-image
installation-os-nonfree)
#:name "nonfree-iso9660-image"
#:system system)))
systems))