From b2abcb52e1ba4ffb1a4bd668b8b3e80e30d696be Mon Sep 17 00:00:00 2001 From: E Shattow Date: Tue, 14 Apr 2026 18:44:05 -0700 Subject: [PATCH] Add riscv64 support to Alpine The last version of Alpine prior to support of riscv64 has been dropped. Let's add riscv64 to Alpine docker-rust images. --- x.py | 1 + 1 file changed, 1 insertion(+) diff --git a/x.py b/x.py index ea2feff..ee1737a 100755 --- a/x.py +++ b/x.py @@ -62,6 +62,7 @@ def write_versions(rust_version, rustup_version): AlpineArch("amd64", "x86_64", "linux/amd64", "x86_64-unknown-linux-musl"), AlpineArch("arm64v8", "aarch64", "linux/arm64", "aarch64-unknown-linux-musl"), AlpineArch("ppc64le", "ppc64le", "linux/ppc64le", "powerpc64le-unknown-linux-musl"), + AlpineArch("riscv64", "riscv64", "linux/riscv64", "riscv64gc-unknown-linux-musl"), ] latest_alpine_version = "3.24"