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:
3
.github/workflows/ci-cd.yml
vendored
3
.github/workflows/ci-cd.yml
vendored
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user