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
1 changed files with 2 additions and 9 deletions

View File

@ -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)