diff options
author | Mark H Weaver <mhw@netris.org> | 2015-04-22 16:46:07 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-04-22 17:25:28 -0400 |
commit | 95203be9eff7d22a6edc6a8318c24b43407593bb (patch) | |
tree | 2cd23a369d79994adbc709f29395564f4bf2d9e6 /build-aux/hydra | |
parent | 5cfc17cb7f813cacba0fc583d5b7d13cfa51063e (diff) | |
download | patches-95203be9eff7d22a6edc6a8318c24b43407593bb.tar patches-95203be9eff7d22a6edc6a8318c24b43407593bb.tar.gz |
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/hydra')
-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)) |