hydra: Add %hydra-supported-systems variable and use it.
* build-aux/hydra/gnu-system.scm (%hydra-supported-systems): New variable. (hydra-jobs): Use %hydra-supported-systems instead of %supported-systems.
This commit is contained in:
parent
5cfc17cb7f
commit
95203be9ef
|
@ -210,6 +210,10 @@ valid."
|
||||||
#f)))))
|
#f)))))
|
||||||
|
|
||||||
|
|
||||||
|
(define %hydra-supported-systems
|
||||||
|
;; This is the list of system types for which build slaves are available.
|
||||||
|
'("x86_64-linux" "i686-linux" "mips64el-linux"))
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
;;; Hydra entry point.
|
;;; Hydra entry point.
|
||||||
;;;
|
;;;
|
||||||
|
@ -269,4 +273,4 @@ valid."
|
||||||
(cross-jobs system)))
|
(cross-jobs system)))
|
||||||
(else
|
(else
|
||||||
(error "unknown subset" subset))))
|
(error "unknown subset" subset))))
|
||||||
%supported-systems))
|
%hydra-supported-systems))
|
||||||
|
|
Loading…
Reference in New Issue