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

Remove 32-bit arm build as ent does not support it. #1201

Closed
wants to merge 1 commit into from
Closed
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
15 changes: 0 additions & 15 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,9 @@ builds:
goarch:
- amd64
- arm64
- arm
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there was discussion around this in the original PR and keeping the arm support: #910 (comment)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Judging from the ent issue, it seems like it will not work. I'll create an issue to investigate.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ignore:
- goos: windows
goarch: arm64
- goos: windows
goarch: arm
- main: ./cmd/guaccsub
id: guaccsub
binary: guaccsub-{{ .Os }}-{{ .Arch }}
Expand All @@ -87,12 +84,9 @@ builds:
goarch:
- amd64
- arm64
- arm
ignore:
- goos: windows
goarch: arm64
- goos: windows
goarch: arm
- main: ./cmd/guacgql
id: guacgql
binary: guacgql-{{ .Os }}-{{ .Arch }}
Expand All @@ -103,12 +97,9 @@ builds:
goarch:
- amd64
- arm64
- arm
ignore:
- goos: windows
goarch: arm64
- goos: windows
goarch: arm
- main: ./cmd/guacingest
id: guacingest
binary: guacingest-{{ .Os }}-{{ .Arch }}
Expand All @@ -119,12 +110,9 @@ builds:
goarch:
- amd64
- arm64
- arm
ignore:
- goos: windows
goarch: arm64
- goos: windows
goarch: arm
- main: ./cmd/guacone
id: guacone
binary: guacone-{{ .Os }}-{{ .Arch }}
Expand All @@ -135,12 +123,9 @@ builds:
goarch:
- amd64
- arm64
- arm
ignore:
- goos: windows
goarch: arm64
- goos: windows
goarch: arm

universal_binaries:
- replace: true
Expand Down
Loading