From 014268659246ffc83bd35d65cc601de1ef9bc151 Mon Sep 17 00:00:00 2001 From: Hermes Date: Sun, 16 Aug 2026 13:11:40 +0500 Subject: [PATCH] =?UTF-8?q?ci:=20=D1=82=D0=BE=D0=BB=D1=8C=D0=BA=D0=BE=20li?= =?UTF-8?q?nux/windows=20amd64=20=E2=80=94=20mac/arm=20=D0=BF=D0=BE=D0=BA?= =?UTF-8?q?=D0=B0=20=D0=BD=D0=B5=20=D0=BD=D1=83=D0=B6=D0=BD=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yaml | 7 ++----- Makefile | 3 --- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 6caadd1..a796b19 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -36,11 +36,8 @@ jobs: needs: test strategy: matrix: - goos: [linux, windows, darwin] - goarch: [amd64, arm64] - exclude: - - goos: windows - goarch: arm64 + goos: [linux, windows] + goarch: [amd64] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/Makefile b/Makefile index 7fa6f99..c4bb141 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,4 @@ bench: .PHONY: cross cross: GOOS=linux GOARCH=amd64 $(GO) build $(GOFLAGS) -o $(APP)-linux-amd64 $(CMD_DIR) - GOOS=linux GOARCH=arm64 $(GO) build $(GOFLAGS) -o $(APP)-linux-arm64 $(CMD_DIR) - GOOS=darwin GOARCH=amd64 $(GO) build $(GOFLAGS) -o $(APP)-darwin-amd64 $(CMD_DIR) - GOOS=darwin GOARCH=arm64 $(GO) build $(GOFLAGS) -o $(APP)-darwin-arm64 $(CMD_DIR) GOOS=windows GOARCH=amd64 $(GO) build $(GOFLAGS) -o $(APP)-windows-amd64.exe $(CMD_DIR) \ No newline at end of file