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.
This commit is contained in:
db123-test
2026-05-04 10:08:43 +03:30
parent 19753ec07d
commit effa25a8bf

View File

@@ -39,9 +39,6 @@ jobs:
- name: Build for Linux amd64 - name: Build for Linux amd64
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 /usr/local/go/bin/go build -o auth-gate-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 - 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 run: CGO_ENABLED=0 GOOS=windows GOARCH=amd64 /usr/local/go/bin/go build -o auth-gate-windows-amd64.exe