Skip to content

Commit d1c11b6

Browse files
ci(docker): add linux/riscv64 support for Docker image builds
Adds riscv64 to DOCKER_ARCHS in Makefile and un-ignores .build/linux-riscv64 in .dockerignore. Fixes #3311 Signed-off-by: benevolentshrine <proffersor45@gmail.com>
1 parent a1cbf81 commit d1c11b6

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
!.build/linux-arm64
77
!.build/linux-ppc64le
88
!.build/linux-s390x
9+
!.build/linux-riscv64

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
all::
1616

1717
# Needs to be defined before including Makefile.common to auto-generate targets
18-
DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le s390x
18+
DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le s390x riscv64
1919

2020
include Makefile.common
2121

0 commit comments

Comments
 (0)