Skip to content

Commit

Permalink
Go workflow: Remove Cross-build step
Browse files Browse the repository at this point in the history
This step is now redundant since we've added the Release workflow [^1]
that runs `make release' for each pull request.

[^1]: https://github.com/cilium/cilium-cli/blob/main/.github/workflows/release.yaml

Signed-off-by: Michi Mutsuzaki <[email protected]>
  • Loading branch information
michi-covalent committed Jan 22, 2024
1 parent d442294 commit a723a45
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,5 @@ jobs:
- name: Build
run: make

- name: Cross-build
run: |
# all GOOS/GOARCH combinations supported by `make local-release`
GOOS=linux GOARCH=386 go build ./cmd/cilium
GOOS=linux GOARCH=amd64 go build ./cmd/cilium
GOOS=linux GOARCH=arm go build ./cmd/cilium
GOOS=linux GOARCH=arm64 go build ./cmd/cilium
GOOS=darwin GOARCH=amd64 go build ./cmd/cilium
GOOS=darwin GOARCH=arm64 go build ./cmd/cilium
GOOS=windows GOARCH=386 go build ./cmd/cilium
GOOS=windows GOARCH=amd64 go build ./cmd/cilium
GOOS=windows GOARCH=arm64 go build ./cmd/cilium
- name: Test
run: make test

0 comments on commit a723a45

Please sign in to comment.