add install to wrap "go install" - #1079
Closed
ChrisJr404 wants to merge 1 commit into
Closed
Conversation
garble already wraps build, test and run through the same toolexec setup, and install builds packages the same way, so it slots into that path with no special handling. It saves obfuscating a binary with garble build and then moving it into GOBIN by hand. Fixes burrowers#981.
Member
|
Thanks. I'm not really interested in drive-by AI patches unless the author is an active user or contributor to the project. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a
garble installcommand, as requested in #981.It goes through the same toolexec path as build, test and run, since
go installbuilds packages the same way, so there was nothing install-specific to handle. Now you can obfuscate and install in one step instead of runninggarble buildand moving the binary into GOBIN yourself.Added a testscript that installs into a temporary GOBIN, checks the binary runs and is obfuscated, and confirms a second install reuses the cache. Also extended the help test for
garble install -h.