-
Notifications
You must be signed in to change notification settings - Fork 36
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
feat: build Ryuk using goreleaser #52
feat: build Ryuk using goreleaser #52
Conversation
Goreleaser will be run in separate machines (ubuntu, windows19 and windows22), and a final job will be run creating the manifest for all the images
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.
Can we pass arguments to the GoReleaser YML files?
.github/workflows/goreleaser.yml
Outdated
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-22.04, windows-2019, windows-2022] |
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.
Dunno, if we need to think about it, but what happens if one OS fails to push the image? We clean it up afterwards by hand?
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.
This is something to evaluate, and probably have a rescue condition: if any of the stages fail (create the initial linux/amd image > create the rest of linux | create windows2019 | create windows2022), should we remove the image from the registry? IIRC it was super hard in the past to remove an image from a registry using CLIs/APIs, not sure if nowadays it's possible
Co-authored-by: Andre Hofmeister <9199345+HofmeisterAn@users.noreply.github.com>
Checking with the authors of goreleaser here: goreleaser/goreleaser#3314 (reply in thread) |
This job will be triggered right after that is finished
We are going to test this like this:
|
What is this PR doing?
It adds goreleaser as build tool to cross-build Ryuk in all supported platforms:
Binaries
Dockers
For that, we will need to build each platform on its own GH worker, and finally create the single multi-platform manifest in the very same worker that created the image. For that, an initial stage pushing the first manifest must be done beforehand.
As seen in the diagram, we need to first create a manifest (build+push), i.e. for linux/amd64, in order to create an initial image where to append the rest of manifests in parallel, and once it finishes, build and annotate the rest of the linux and the windows versions.
Each OS-stage will have its own goreleaser config file, so that it knows what to build
Why is this important?
Cross-build Ryuk in a simple, consistent and standard way