From 1d32d9c0f777989aa9777662fb570dde7a73977e Mon Sep 17 00:00:00 2001 From: George Adams Date: Tue, 10 Sep 2024 18:34:15 +0100 Subject: [PATCH] add riscv64 build of docker-ce Signed-off-by: George Adams --- common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.mk b/common.mk index 941f97cbd5..ec596769fc 100644 --- a/common.mk +++ b/common.mk @@ -10,7 +10,7 @@ ARCH=$(shell uname -m) # Adding new architectures or changing the format in release-packaging will prevent make # from finding the corresponding rule unless this list is updated. # Or Jenkinsfiles/Makefiles removed (🎵 Gotta have faith-a-faith-a-faith... 🎵) -ARCHES:=amd64 aarch64 armhf armel s390x ppc64le +ARCHES:=amd64 aarch64 armhf armel ppc64le riscv64 s390x BUILDTIME=$(shell date -u -d "@$${SOURCE_DATE_EPOCH:-$$(date +%s)}" --rfc-3339 ns 2> /dev/null | sed -e 's/ /T/') CHOWN:=docker run --rm -v $(CURDIR):/v -w /v alpine chown