Add a filegroup for Rust crates

This is not strictly necessary, but I think it will be convenient to have a
single Bazel target that represents all the crates we want to publish with each
release.

PiperOrigin-RevId: 732219832
pull/20532/head
Adam Cozzette 1 month ago committed by Copybara-Service
parent 54a4a74c6c
commit 21d1a6ff81
  1. 19
      rust/release_crates/BUILD

@ -1,15 +1,22 @@
# Protobuf Rust crate packaging for release.
filegroup(
name = "crates",
srcs = [
"//rust/release_crates/protobuf:protobuf_crate",
"//rust/release_crates/protobuf_codegen:protobuf_codegen_crate",
"//rust/release_crates/protobuf_example:protobuf_example_crate",
"//rust/release_crates/protobuf_well_known_types:crate",
],
)
# Run the cargo test with only a bundled linux-x86_64 protoc.
sh_binary(
name = "cargo_test",
srcs = ["cargo_test.sh"],
data = [
":crates",
"//:protoc",
"//rust/release_crates/protobuf:protobuf_crate",
"//rust/release_crates/protobuf_codegen:protobuf_codegen_crate",
"//rust/release_crates/protobuf_example:protobuf_example_crate",
"//rust/release_crates/protobuf_well_known_types:crate",
],
tags = ["manual"],
deps = ["@bazel_tools//tools/bash/runfiles"],
@ -19,10 +26,8 @@ sh_binary(
name = "release",
srcs = ["release.sh"],
data = [
":crates",
"//:protoc",
"//rust/release_crates/protobuf:protobuf_crate",
"//rust/release_crates/protobuf_codegen:protobuf_codegen_crate",
"//rust/release_crates/protobuf_example:protobuf_example_crate",
],
tags = ["manual"],
deps = ["@bazel_tools//tools/bash/runfiles"],

Loading…
Cancel
Save