From effa25a8bf2b89ca2967e95a4bd94e3dfd2f1782 Mon Sep 17 00:00:00 2001 From: db123-test Date: Mon, 4 May 2026 10:08:43 +0330 Subject: [PATCH] ci: remove Linux arm64 build from CI/CD pipeline The arm64 build step has been removed from the GitHub Actions workflow. This simplifies the pipeline by only building for amd64 targets. --- .github/workflows/ci-cd.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 9e6a368..4cc49c3 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -39,9 +39,6 @@ jobs: - name: Build for Linux amd64 run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 /usr/local/go/bin/go build -o auth-gate-linux-amd64 . - - name: Build for Linux arm64 - run: CGO_ENABLED=0 GOOS=linux GOARCH=arm64 /usr/local/go/bin/go build -o auth-gate-linux-arm64 . - - name: Build for Windows amd64 run: CGO_ENABLED=0 GOOS=windows GOARCH=amd64 /usr/local/go/bin/go build -o auth-gate-windows-amd64.exe