From 6955028b294bc41ff1ac089b14c6c030b0d1f68e Mon Sep 17 00:00:00 2001 From: tdakkota Date: Fri, 25 Apr 2025 19:01:02 +0300 Subject: [PATCH] ci(docker): build and publish `linux/riscv64` images Signed-off-by: tdakkota --- .dockerignore | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index cfeaf5f6..b129c782 100644 --- a/.dockerignore +++ b/.dockerignore @@ -6,3 +6,4 @@ !.build/linux-arm64 !.build/linux-ppc64le !.build/linux-s390x +!.build/linux-riscv64 diff --git a/Makefile b/Makefile index 0b2ff6f2..f9d0c2ba 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ all:: # Needs to be defined before including Makefile.common to auto-generate targets -DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le s390x +DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le s390x riscv64 include Makefile.common