Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Go workflow: Remove Cross-build step #2255

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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