hydra: Hard-code target systems.
* build-aux/hydra/gnu-system.scm (hydra-jobs)[systems]: Define locally, independently of ARGUMENTS. This matches the new Hydra convention, where using a 'system' input is deprecated.
This commit is contained in:
parent
9214f9bc0a
commit
1971737f2b
|
@ -111,15 +111,8 @@ SYSTEM."
|
||||||
(define (hydra-jobs store arguments)
|
(define (hydra-jobs store arguments)
|
||||||
"Return Hydra jobs."
|
"Return Hydra jobs."
|
||||||
(define systems
|
(define systems
|
||||||
(match (filter-map (match-lambda
|
;; Systems we want to build for.
|
||||||
(('system . value)
|
'("x86_64-linux" "i686-linux"))
|
||||||
value)
|
|
||||||
(_ #f))
|
|
||||||
arguments)
|
|
||||||
((lst ..1)
|
|
||||||
lst)
|
|
||||||
(_
|
|
||||||
(list (%current-system)))))
|
|
||||||
|
|
||||||
(define subset
|
(define subset
|
||||||
(match (assoc-ref arguments 'subset)
|
(match (assoc-ref arguments 'subset)
|
||||||
|
|
Loading…
Reference in New Issue