Skip to content
Snippets Groups Projects
Commit abcbda48 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

packages: Add '%hydra-supported-systems'.

* build-aux/hydra/gnu-system.scm (%hydra-supported-systems): Remove.
* guix/packages.scm (%hydra-supported-systems): New variable.
parent ea7f3349
No related branches found
No related tags found
No related merge requests found
......@@ -210,10 +210,6 @@ (define package->job
#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.
;;;
......
......@@ -95,6 +95,7 @@ (define-module (guix packages)
package-grafts
%supported-systems
%hydra-supported-systems
supported-package?
&package-error
......@@ -210,6 +211,11 @@ (define %supported-systems
;; expect all packages to build successfully here.
'("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.
(define-record-type* <package>
package make-package
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment