mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 00:18:07 +01:00
62a5df4222
Fixes https://gitlab.com/nonguix/nonguix/-/issues/224 * *.scm: Use SPDX license identifier and remove obsolete license statement.
23 lines
657 B
Scheme
23 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))
|