From aef0b3541c8b832a1954dea52847ccc8754e7567 Mon Sep 17 00:00:00 2001 From: UebelAndre Date: Mon, 9 Dec 2024 06:12:42 -0800 Subject: [PATCH] Fix module path for bcr testing --- .bcr/extensions/bindgen/presubmit.yml | 2 +- .bcr/extensions/prost/presubmit.yml | 2 +- .bcr/extensions/protobuf/presubmit.yml | 2 +- .bcr/extensions/wasm_bindgen/presubmit.yml | 2 +- .github/release_notes.template | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bcr/extensions/bindgen/presubmit.yml b/.bcr/extensions/bindgen/presubmit.yml index b146237bd2..1db58cc1e3 100644 --- a/.bcr/extensions/bindgen/presubmit.yml +++ b/.bcr/extensions/bindgen/presubmit.yml @@ -1,5 +1,5 @@ bcr_test_module: - module_path: "extensions/bindgen" + module_path: "" matrix: platform: ["macos_arm64", "ubuntu2004", "windows"] bazel: ["7.x"] diff --git a/.bcr/extensions/prost/presubmit.yml b/.bcr/extensions/prost/presubmit.yml index 964d94a75c..1db58cc1e3 100644 --- a/.bcr/extensions/prost/presubmit.yml +++ b/.bcr/extensions/prost/presubmit.yml @@ -1,5 +1,5 @@ bcr_test_module: - module_path: "extensions/prost" + module_path: "" matrix: platform: ["macos_arm64", "ubuntu2004", "windows"] bazel: ["7.x"] diff --git a/.bcr/extensions/protobuf/presubmit.yml b/.bcr/extensions/protobuf/presubmit.yml index d25540d66a..1db58cc1e3 100644 --- a/.bcr/extensions/protobuf/presubmit.yml +++ b/.bcr/extensions/protobuf/presubmit.yml @@ -1,5 +1,5 @@ bcr_test_module: - module_path: "extensions/protobuf" + module_path: "" matrix: platform: ["macos_arm64", "ubuntu2004", "windows"] bazel: ["7.x"] diff --git a/.bcr/extensions/wasm_bindgen/presubmit.yml b/.bcr/extensions/wasm_bindgen/presubmit.yml index cb1a32fd67..1db58cc1e3 100644 --- a/.bcr/extensions/wasm_bindgen/presubmit.yml +++ b/.bcr/extensions/wasm_bindgen/presubmit.yml @@ -1,5 +1,5 @@ bcr_test_module: - module_path: "extensions/wasm_bindgen" + module_path: "" matrix: platform: ["macos_arm64", "ubuntu2004", "windows"] bazel: ["7.x"] diff --git a/.github/release_notes.template b/.github/release_notes.template index a9d0bec31a..364d850030 100644 --- a/.github/release_notes.template +++ b/.github/release_notes.template @@ -105,7 +105,7 @@ bazel_dep(name = "rules_rust_wasm_bindgen", version = "{version}") ```python load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( - name = "rules_rust", + name = "rules_rust_wasm_bindgen", integrity = "sha256-{ext_wasm_bindgen_sha256_base64}", urls = ["https://github.com/bazelbuild/rules_rust/releases/download/{version}/rules_rust_wasm_bindgen-{version}.tar.gz"], )