-
Notifications
You must be signed in to change notification settings - Fork 3
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
Update goos configuration in goreleaser to support only Linux #72
Conversation
…s-compilation settings for ARM64
…essary dependencies for ARM64 cross-compilation
…obs for Linux and macOS
…r Linux and macOS workflows
…ion to use version constraint
Our original release setup fails due to CGO dependencies in |
builds: | ||
- main: ./cmd/tester/main.go | ||
binary: tester | ||
env: | ||
- CGO_ENABLED=0 | ||
- CGO_ENABLED=1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ryan-gang with CGO enabled I think we're going to run into errors running this on alpine. That's why we had CGO set to 0 previously. Can you confirm that this works fine on alpine?
|
This pull request updates the goos configuration in goreleaser to support only Linux. Previously, it supported both Linux and Darwin. The goos configuration is now set to only Linux, which ensures that the build process is optimized for Linux environments.