-
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
build release binaries for all platforms #24
Conversation
- This allows us to build them all on the same machine if we want to.
- This just makes it more complex and isn't needed in real life.
- Because some final builds are not clean, and thus not release builds.
- Better represents purpose.
- Using the makefile to produce multi-platform binaries was getting too hard to read. Hopefully this makes it clearer.
if err := fs.MkdirEmpty(c.Paths.TargetDir()); err != nil { | ||
return err | ||
} | ||
return fs.Mkdirs(c.Paths.ZipDir(), c.Paths.MetaDir) |
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.
The change on line 149 above ensures that the target directory is empty at the start of the build process. This is pretty important for reproducibility. It wasn't noticed before, since we were using uniquely-named temporary directories for most builds. However, now we are building directly into dist/.../...
, the issue came to light.
# 2) INTERMEDIATE_BUILD - Some build metadata. | ||
# 3) RELEASE_BUILD - All build metadata. | ||
# 3) BOOTSTRAPPED_BUILD - All build metadata. |
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.
I renamed all these for hopefully the last time... I think we're consistent with naming everywhere now.
@@ -1,5 +1,7 @@ | |||
SHELL := /usr/bin/env bash -euo pipefail -c | |||
|
|||
MAKEFLAGS := --jobs=10 |
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 speeds things up by default, on later versions of GNU Make.
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.
LGTM 🚢
Justification
Makes it quick and easy to build actions-go-build CLI binaries for all target platforms, via new make targets
make build
andmake release
.This is a precursor to being able to use prebuilt binaries in the action, rather than having to compile the action CLI itself every time it is run, this should speed it up quite a lot.
Summary
The core is to add targets for building for all platforms to the Makefile. See
make build
andmake release
. A lot of the build logic is moved out of the Makefile and into a scriptdev/build
which can be invoked by itself to run builds, e.g../dev/build all_from_scratch
to build all binaries from scratch.Quality
This PR includes only one tiny change to behaviour: it ensures the build target directory is empty before running the build. This is essential for reproducibility, but hasn't caused issues until now (the new make targets surfaced the issue). That code path is already covered by countless tests, so I didn't add a new one.