packages: Add '%hydra-supported-systems'.
* build-aux/hydra/gnu-system.scm (%hydra-supported-systems): Remove. * guix/packages.scm (%hydra-supported-systems): New variable.
This commit is contained in:
parent
ea7f3349ba
commit
abcbda48c2
|
@ -210,10 +210,6 @@ 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.
|
||||||
;;;
|
;;;
|
||||||
|
|
|
@ -95,6 +95,7 @@
|
||||||
package-grafts
|
package-grafts
|
||||||
|
|
||||||
%supported-systems
|
%supported-systems
|
||||||
|
%hydra-supported-systems
|
||||||
supported-package?
|
supported-package?
|
||||||
|
|
||||||
&package-error
|
&package-error
|
||||||
|
@ -210,6 +211,11 @@ corresponds to the arguments expected by `set-path-environment-variable'."
|
||||||
;; expect all packages to build successfully here.
|
;; expect all packages to build successfully here.
|
||||||
'("x86_64-linux" "i686-linux" "armhf-linux" "mips64el-linux"))
|
'("x86_64-linux" "i686-linux" "armhf-linux" "mips64el-linux"))
|
||||||
|
|
||||||
|
(define %hydra-supported-systems
|
||||||
|
;; This is the list of system types for which build slaves are available.
|
||||||
|
(delete "armhf-linux" %supported-systems))
|
||||||
|
|
||||||
|
|
||||||
;; A package.
|
;; A package.
|
||||||
(define-record-type* <package>
|
(define-record-type* <package>
|
||||||
package make-package
|
package make-package
|
||||||
|
|
Loading…
Reference in New Issue