summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2015-04-22 16:46:07 -0400
committerMark H Weaver <mhw@netris.org>2015-04-22 17:25:28 -0400
commit95203be9eff7d22a6edc6a8318c24b43407593bb (patch)
tree2cd23a369d79994adbc709f29395564f4bf2d9e6 /build-aux
parent5cfc17cb7f813cacba0fc583d5b7d13cfa51063e (diff)
downloadguix-95203be9eff7d22a6edc6a8318c24b43407593bb.tar.gz
guix-95203be9eff7d22a6edc6a8318c24b43407593bb.tar.xz
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.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/hydra/gnu-system.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm
index b1432f6660..9a47b4f423 100644
--- a/build-aux/hydra/gnu-system.scm
+++ b/build-aux/hydra/gnu-system.scm
@@ -210,6 +210,10 @@ valid."
#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.
;;;
@@ -269,4 +273,4 @@ valid."
(cross-jobs system)))
(else
(error "unknown subset" subset))))
- %supported-systems))
+ %hydra-supported-systems))