ci: Add arguments->systems procedure.

* gnu/ci.scm (arguments->systems): New procedure.
(cuirass-jobs): Use it.
This commit is contained in:
Mathieu Othacehe 2021-04-28 11:52:31 +02:00
parent 996b5edf51
commit 3034f3d05b
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -72,6 +72,8 @@ (define-module (gnu ci)
%core-packages
%cross-targets
channel-source->package
arguments->systems
cuirass-jobs))
;;; Commentary:
@ -443,6 +445,13 @@ (define (load-manifest manifest)
load-manifest)
manifests))))
(define (arguments->systems arguments)
"Return the systems list from ARGUMENTS."
(match (assoc-ref arguments 'systems)
(#f %cuirass-supported-systems)
((lst ...) lst)
((? string? str) (call-with-input-string str read))))
;;;
;;; Cuirass entry point.
@ -454,10 +463,7 @@ (define subset
(assoc-ref arguments 'subset))
(define systems
(match (assoc-ref arguments 'systems)
(#f %cuirass-supported-systems)
((lst ...) lst)
((? string? str) (call-with-input-string str read))))
(arguments->systems arguments))
(define channels
(let ((channels (assq-ref arguments 'channels)))