Skip to content

Commit

Permalink
Disable bindgen tests in BCR on windows to match normal CI (#3084)
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre authored Dec 11, 2024
1 parent c77ab04 commit 7743935
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 11 deletions.
6 changes: 5 additions & 1 deletion .bcr/extensions/bindgen/presubmit.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
bcr_test_module:
module_path: ""
matrix:
platform: ["macos_arm64", "ubuntu2004", "windows"]
platform:
- "macos_arm64"
- "ubuntu2004"
# # TODO: https://github.com/bazelbuild/rules_rust/issues/2009
# - "windows"
bazel: ["7.x"]
tasks:
run_tests:
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module(
name = "rules_rust",
version = "0.55.5",
version = "0.55.6",
)

###############################################################################
Expand Down
4 changes: 2 additions & 2 deletions extensions/bindgen/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

module(
name = "rules_rust_bindgen",
version = "0.55.5",
version = "0.55.6",
)

bazel_dep(
name = "rules_rust",
version = "0.55.5",
version = "0.55.6",
)
bazel_dep(
name = "bazel_skylib",
Expand Down
4 changes: 2 additions & 2 deletions extensions/prost/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

module(
name = "rules_rust_prost",
version = "0.55.5",
version = "0.55.6",
)

bazel_dep(
name = "rules_rust",
version = "0.55.5",
version = "0.55.6",
)
bazel_dep(
name = "platforms",
Expand Down
4 changes: 2 additions & 2 deletions extensions/protobuf/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

module(
name = "rules_rust_protobuf",
version = "0.55.5",
version = "0.55.6",
)

bazel_dep(
name = "rules_rust",
version = "0.55.5",
version = "0.55.6",
)
bazel_dep(
name = "bazel_skylib",
Expand Down
4 changes: 2 additions & 2 deletions extensions/wasm_bindgen/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

module(
name = "rules_rust_wasm_bindgen",
version = "0.55.5",
version = "0.55.6",
)

bazel_dep(
name = "rules_rust",
version = "0.55.5",
version = "0.55.6",
)
bazel_dep(
name = "bazel_skylib",
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The version of rules_rust."""

VERSION = "0.55.5"
VERSION = "0.55.6"

0 comments on commit 7743935

Please sign in to comment.