diff options
author | Andreas Enge <andreas@enge.fr> | 2015-04-26 20:08:49 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2015-04-26 20:08:49 +0200 |
commit | 4ac0d6444d4edf38edc7c07331cf76deb4a506bc (patch) | |
tree | 5264c9c87172b8f0015823b0ee891d3672ac291a /build-aux/hydra/gnu-system.scm | |
parent | d074e2f99130782e8eb7fa44c79c01db6c86f77d (diff) | |
parent | 7bde30e18de3e8cd7e4156ea5bb0d9439b6c12d7 (diff) | |
download | guix-4ac0d6444d4edf38edc7c07331cf76deb4a506bc.tar.gz |
Merge branch 'master' into core-updates.
Diffstat (limited to 'build-aux/hydra/gnu-system.scm')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 6 |
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)) |