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 stardoc first run #1255

Merged
merged 2 commits into from
Oct 29, 2021
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
3 changes: 3 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# NOTE: These are mainly just for the BazelCI setup so they don't have
# to be repeated multiple times in .bazelci/presubmit.yml.

# https://github.com/bazelbuild/stardoc/issues/112
common --incompatible_allow_tags_propagation

# Force the tests to not run in sandboxed mode, since it can introduce
# errors and flakes.
test --spawn_strategy=local
Expand Down
1 change: 1 addition & 0 deletions doc/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ _DOC_SRCS = [
out = file + ".md",
header_template = ":header.vm",
input = "//apple:%s.bzl" % file,
tags = ["no-sandbox"], # https://github.com/bazelbuild/stardoc/issues/112
deps = ["//apple:" + file],
)
for file in _DOC_SRCS
Expand Down
3 changes: 2 additions & 1 deletion examples/multi_platform/Buttons/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ macos_unit_test(
name = "ButtonsMacLogicTests",
bundle_id = "com.google.logic",
minimum_os_version = "10.10",
tags = ["manual"], # https://github.com/bazelbuild/continuous-integration/issues/1273
deps = [":ButtonsMacTestsLib"],
)

Expand All @@ -341,7 +342,7 @@ macos_unit_test(
test_suite(
name = "macOSButtonsTestSuite",
tests = [
":ButtonsMacLogicTests",
# ":ButtonsMacLogicTests",
# ":ButtonsMacTests",
# ":ButtonsMacUITests",
],
Expand Down