-
-
Notifications
You must be signed in to change notification settings - Fork 260
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
Add preliminary support for exe
packaging type
#908
Add preliminary support for exe
packaging type
#908
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
e6052fb
to
352ebaa
Compare
This is to allow fetching prebuilt binaries (such as [protoc](https://repo1.maven.org/maven2/com/google/protobuf/protoc/)) in the same way as other artifacts served by maven repositories. Background: particularly useful for defining (lang) proto toolchains, without having to compile nor manually maintain repository mappings (checksums, etc.) for all supported platforms.
352ebaa
to
40dfd3d
Compare
Hi @cheister, may I kindly request a review? |
Or @shs96c, maybe? |
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 CI tests are passing, and this makes sense. Thank you for taking the time to put this PR together, and your patience waiting for a review!
@@ -253,6 +253,10 @@ maven_install( | |||
group = "com.google.apis", | |||
version = "v1-rev235-1.25.0", | |||
), | |||
# https://github.com/bazelbuild/rules_jvm_external/issues/907 | |||
# Any two platforms to ensure that it doesn't work _only_ under the host operating system |
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.
Excellent. Thank you
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 do thank you, @shs96c, knowing how time-consuming code reviews can be...
Resolves #907.
This is to allow fetching prebuilt binaries (such as protoc) in the same way as other artifacts served by maven repositories.
Background: particularly useful for defining (lang) proto toolchains, without having to compile nor manually maintain repository mappings (checksums, etc.) for all supported platforms.
A few related questions/contributions:
@build_stack_rules_proto//toolchain:prebuilt
)