Skip to content
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

Fix missing bzlmod extensions #3050

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .bcr/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
fixedReleaser:
login: scentini
email: [email protected]
moduleRoots: [".", "extensions"]
moduleRoots:
- "."
- "extensions/bindgen"
- "extensions/prost"
- "extensions/protobuf"
- "extensions/wasm_bindgen"
2 changes: 1 addition & 1 deletion .bcr/extensions/bindgen/metadata.template.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"homepage": "https://github.com/bazelbuild/rules_rust/extensions/bindgen",
"homepage": "https://github.com/bazelbuild/rules_rust/tree/main/extensions/bindgen",
"maintainers": [
{
"email": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion .bcr/extensions/prost/metadata.template.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"homepage": "https://github.com/bazelbuild/rules_rust/extensions/prost",
"homepage": "https://github.com/bazelbuild/rules_rust/tree/main/extensions/prost",
"maintainers": [
{
"email": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion .bcr/extensions/protobuf/metadata.template.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"homepage": "https://github.com/bazelbuild/rules_rust/extensions/protobuf",
"homepage": "https://github.com/bazelbuild/rules_rust/tree/main/extensions/protobuf",
"maintainers": [
{
"email": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion .bcr/extensions/wasm_bindgen/metadata.template.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"homepage": "https://github.com/bazelbuild/rules_rust/extensions/wasm_bindgen",
"homepage": "https://github.com/bazelbuild/rules_rust/tree/main/extensions/wasm_bindgen",
"maintainers": [
{
"email": "[email protected]",
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,12 @@ jobs:
# `examples/bzlmod` is included for the BCR presubmit; it must appear before --exclude="examples"
tar -czf ${{ github.workspace }}/.github/rules_rust.tar.gz \
-C ${{ github.workspace }} \
--exclude=".git" --exclude=".github" \
--exclude=".git" \
--exclude=".github" \
--exclude="crate_universe/target" \
--exclude="extensions" \
examples/bzlmod \
--exclude="examples" \
--exclude="extensions" \
.
# Save the sha256 checksum of the distro archive to the environment
Expand Down
Loading