Skip to content

Commit

Permalink
fix: //docs tests in MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
jjmaestro committed Dec 11, 2024
1 parent 936081d commit 667c6ad
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
load("@aspect_bazel_lib//lib:docs.bzl", "stardoc_with_diff_test", "update_docs")
load("@bazel_features//private:util.bzl", "ge")

COMPATIBLE = ["@platforms//:incompatible"] if ge("8.0.0rc1") else []
COMPATIBLE = ["@platforms//:incompatible"] if ge("8.0.0rc1") else select({
"@platforms//cpu:x86_64": ["@platforms//cpu:x86_64"],
"@platforms//cpu:arm64": ["@platforms//cpu:arm64"],
}) + [
"@platforms//os:linux",
]

stardoc_with_diff_test(
name = "rules",
Expand Down

0 comments on commit 667c6ad

Please sign in to comment.