-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
dep upgrade broke proto-install
#1258
Comments
I noticed this and was working on a fix the other day. The issue is dep prunes unused dependencies. The best idea I had was a file named
Presumably would circumvent the pruning. |
Interestingly, the old Can't we instruct |
Figured out the canonical way to do this is to use the |
Thanks for the ref. We should consider using virtualgo as well, it auto-installs dep-required packages . |
In order to guarantee repeatable protobuf code gen, we have a targer
proto-install
in the Makefile, which installs gogoproto plugins locally. Unfortunately, this target is not tested in the CI, and it has been broken by thedep
upgrade.Compare
vs. master (or anything since 5f6af99):
cc @isaachier @vprithvi
The text was updated successfully, but these errors were encountered: