From 13c63986ad3e31df5d26231cf1af63aec6dc79c1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 20 Mar 2026 16:23:07 +0100 Subject: [PATCH] ci: add riscv64 to local-cross build target Add bin/skopeo.linux.riscv64 to the local-cross Makefile target, adding RISC-V cross-compilation validation alongside the existing architectures. Closes #2827 Signed-off-by: Bruno Verachten --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d873ef6c0..470e7e531 100644 --- a/Makefile +++ b/Makefile @@ -134,7 +134,7 @@ bin/skopeo: $(GO) build ${GO_DYN_FLAGS} ${SKOPEO_LDFLAGS} -gcflags "$(GOGCFLAGS)" -tags "$(BUILDTAGS)" -o $@ ./cmd/skopeo bin/skopeo.%: GOOS=$(word 2,$(subst ., ,$@)) GOARCH=$(word 3,$(subst ., ,$@)) $(GO) build ${SKOPEO_LDFLAGS} -tags "containers_image_openpgp $(BUILDTAGS)" -o $@ ./cmd/skopeo -local-cross: bin/skopeo.darwin.amd64 bin/skopeo.linux.arm bin/skopeo.linux.arm64 bin/skopeo.windows.386.exe bin/skopeo.windows.amd64.exe +local-cross: bin/skopeo.darwin.amd64 bin/skopeo.linux.arm bin/skopeo.linux.arm64 bin/skopeo.linux.riscv64 bin/skopeo.windows.386.exe bin/skopeo.windows.amd64.exe $(MANPAGES): %: %.md ifneq ($(DISABLE_DOCS), 1)