aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGiteabot <teabot@gitea.io>2025-04-15 00:57:43 +0800
committerGitHub <noreply@github.com>2025-04-14 16:57:43 +0000
commited0e8865f37447c19908494b75a01043cc15f8f3 (patch)
tree2aa4fcff02bb4bd85b58b740507f2a29f99a745f /Makefile
parentdc5adce70dea458fc2768c32bdce3e2899861959 (diff)
downloadgitea-release/v1.23.tar.gz
gitea-release/v1.23.zip
feat: add riscv64 support (#34199) (#34204)release/v1.23
Backport #34199 by @mengzhuo Co-authored-by: Meng Zhuo <mengzhuo1203@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ba98f72550..fca5350899 100644
--- a/Makefile
+++ b/Makefile
@@ -109,7 +109,7 @@ endif
LDFLAGS := $(LDFLAGS) -X "main.MakeVersion=$(MAKE_VERSION)" -X "main.Version=$(GITEA_VERSION)" -X "main.Tags=$(TAGS)"
-LINUX_ARCHS ?= linux/amd64,linux/386,linux/arm-5,linux/arm-6,linux/arm64
+LINUX_ARCHS ?= linux/amd64,linux/386,linux/arm-5,linux/arm-6,linux/arm64,linux/riscv64
GO_TEST_PACKAGES ?= $(filter-out $(shell $(GO) list code.gitea.io/gitea/models/migrations/...) code.gitea.io/gitea/tests/integration/migration-test code.gitea.io/gitea/tests code.gitea.io/gitea/tests/integration code.gitea.io/gitea/tests/e2e,$(shell $(GO) list ./... | grep -v /vendor/))
MIGRATE_TEST_PACKAGES ?= $(shell $(GO) list code.gitea.io/gitea/models/migrations/...)