[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/19: docker: Enable arm64 docker image building for 'guix pack'.
From: |
guix-commits |
Subject: |
11/19: docker: Enable arm64 docker image building for 'guix pack'. |
Date: |
Tue, 23 Nov 2021 04:26:35 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 9f00e7429df88538246652056ef9497cd2a817b5
Author: Collin J. Doering <collin@rekahsoft.ca>
AuthorDate: Fri Nov 19 16:12:03 2021 -0500
docker: Enable arm64 docker image building for 'guix pack'.
* guix/docker.scm (build-docker-image): Recognize "aarch64".
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
guix/docker.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/guix/docker.scm b/guix/docker.scm
index a6f73d4..5e6460f 100644
--- a/guix/docker.scm
+++ b/guix/docker.scm
@@ -214,10 +214,11 @@ SRFI-19 time-utc object, as the creation time in
metadata."
(else
(error "unsupported system"
system)))))))
- (cond* ("x86_64" "amd64")
- ("i686" "386")
- ("arm" "arm")
- ("mips64" "mips64le")))))
+ (cond* ("x86_64" "amd64")
+ ("i686" "386")
+ ("arm" "arm")
+ ("aarch64" "arm64")
+ ("mips64" "mips64le")))))
;; Make sure we start with a fresh, empty working directory.
(mkdir directory)
(with-directory-excursion directory
- 03/19: gnu: Add stcgal., (continued)
- 03/19: gnu: Add stcgal., guix-commits, 2021/11/23
- 05/19: gnu: Add python-dbus-next., guix-commits, 2021/11/23
- 01/19: maint: "make dist" builds tarballs in 'ustar' format., guix-commits, 2021/11/23
- 02/19: gnu: Add python-tinydb., guix-commits, 2021/11/23
- 04/19: gnu: python-xcffib: Upgrade to 0.11.1., guix-commits, 2021/11/23
- 14/19: system: Warn about swap-devices format change, guix-commits, 2021/11/23
- 18/19: guix graph: Show '-M' in '--help' output., guix-commits, 2021/11/23
- 09/19: gnu: piper: Update to 0.6., guix-commits, 2021/11/23
- 15/19: system: Add swap flags., guix-commits, 2021/11/23
- 12/19: doc: Fix the example of "Using virt-viewer with Spice"., guix-commits, 2021/11/23
- 11/19: docker: Enable arm64 docker image building for 'guix pack'.,
guix-commits <=
- 16/19: system: Filter out boot dependencies from swap-space., guix-commits, 2021/11/23
- 13/19: system: Rework swap space support, add dependencies., guix-commits, 2021/11/23
- 19/19: Update NEWS., guix-commits, 2021/11/23
- 06/19: gnu: Add python-iwlib., guix-commits, 2021/11/23
- 07/19: gnu: Add qtile., guix-commits, 2021/11/23
- 10/19: gnu: pipe-viewer: Update to 0.1.7., guix-commits, 2021/11/23
- 08/19: gnu: libratbag: Update to 0.16., guix-commits, 2021/11/23
- 17/19: doc: Add new Swap Space section., guix-commits, 2021/11/23