-
Notifications
You must be signed in to change notification settings - Fork 69
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
Need ability to specify other versions of protoc #73
Comments
Update, rules_go moved to downloading this each time: bazel-contrib/rules_go#2729 |
Hi. In a similar way, is it possible to avoid using the binaries for my current system? Reason is that the binaries do not work:
How can I force the rules to skip the select? TIA! |
Toolchainisation of protoc should make this possible. |
Hi, can someone help me understand the current options for using a specific version/repository of protoc with rules_proto? I see there is a bazel command line flag |
Many tools require us to specify other versions of
protoc
than the default that comes with the ruleset, and it would be really nice to be able to specify that in the arguments to the rules_proto setup.The biggest issue with this is specifying the sha256s, rules_go does this by having a checked-in list:
sdk_list.bzl
Previously this was possibly by simply specifying your own
com_google_protobuf
http_archive
before setting uprules_proto
, but now you have to override all of the dependencies independencies.bzl
.The text was updated successfully, but these errors were encountered: