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:
Ludovic Courtès 2014-03-25 18:57:07 +01:00
parent 9214f9bc0a
commit 1971737f2b

View file

@ -111,15 +111,8 @@ (define %cross-targets
(define (hydra-jobs store arguments)
"Return Hydra jobs."
(define systems
(match (filter-map (match-lambda
(('system . value)
value)
(_ #f))
arguments)
((lst ..1)
lst)
(_
(list (%current-system)))))
;; Systems we want to build for.
'("x86_64-linux" "i686-linux"))
(define subset
(match (assoc-ref arguments 'subset)