diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-10-20 15:43:18 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-10-20 23:26:50 +0200 |
commit | d04285647dda1d5b8b49de22a4cb91614e725093 (patch) | |
tree | 93c51f39d6efc20531469bd44afba8367b4e2d81 | |
parent | 0fe041bd9fa87d23b44969a3bcd99b1165a0f06e (diff) | |
download | patches-d04285647dda1d5b8b49de22a4cb91614e725093.tar patches-d04285647dda1d5b8b49de22a4cb91614e725093.tar.gz |
packages: Add "aarch64-linux" to '%hydra-supported-systems'.
* guix/packages.scm (%hydra-supported-systems): Keep "aarch64-linux".
-rw-r--r-- | guix/packages.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index f2c94c7bc2..c98fb98aec 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -241,9 +241,9 @@ name of its URI." (define %hydra-supported-systems ;; This is the list of system types for which build machines are available. ;; - ;; XXX: MIPS is temporarily unavailable on Hydra: + ;; XXX: MIPS is unavailable in CI: ;; <https://lists.gnu.org/archive/html/guix-devel/2017-03/msg00790.html>. - (fold delete %supported-systems '("aarch64-linux" "mips64el-linux"))) + (fold delete %supported-systems '("mips64el-linux"))) ;; A package. |