Skip to content

Commit 71db6e6

Browse files
committed
refactor: forbid compiling protoc in root repository
I cannot withstand slow releases due to stardoc having a bug
1 parent db07bae commit 71db6e6

File tree

8 files changed

+40
-20
lines changed

8 files changed

+40
-20
lines changed

.bazelignore

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# Nested modules
2+
docs/
13
example/

.bazelrc

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
# https://bazelbuild.slack.com/archives/C014RARENH0/p1691158021917459?thread_ts=1691156601.420349&cid=C014RARENH0
88
common --check_direct_dependencies=off
99

10+
# Don't build protoc from the cc_binary, it's slow and spammy when cache miss
11+
common --per_file_copt=external/.*protobuf.*@--PROTOBUF_WAS_NOT_SUPPOSED_TO_BE_BUILT
12+
common --host_per_file_copt=external/.*protobuf.*@--PROTOBUF_WAS_NOT_SUPPOSED_TO_BE_BUILT
13+
1014
# Load any settings specific to the current user.
1115
# .bazelrc.user should appear in .gitignore so that settings are not shared with team members
1216
# This needs to be last statement in this

.github/workflows/ci.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ jobs:
2020
bazel-test:
2121
uses: bazel-contrib/.github/.github/workflows/bazel.yaml@v6
2222
with:
23-
folders: '[".", "example"]'
23+
folders: '[".", "docs", "example"]'
2424
# Don't try for Windows support yet.
2525
exclude_windows: true
2626
# Root module is bzlmod-only and uses newer stardoc that requires Bazel 7.
2727
# Example uses incompatible_enable_proto_toolchain_resolution
2828
exclude: |
2929
[
3030
{"bzlmodEnabled": false, "folder": "."},
31-
{"bazelversion": "6.4.0"}
31+
{"bzlmodEnabled": false, "folder": "docs"},
32+
{"bazelversion": "6.4.0"},
3233
]
3334
3435
integration-test:

MODULE.bazel

+6-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,15 @@ bazel_dep(name = "rules_proto", version = "6.0.0")
2424

2525
# Needed in the root because we dereference the toolchain in our aspect impl
2626
bazel_dep(name = "rules_buf", version = "0.1.1")
27-
bazel_dep(name = "toolchains_protoc", version = "0.2.1")
27+
# bazel_dep(name = "toolchains_protoc", version = "0.3.7")
2828

2929
multitool = use_extension("@rules_multitool//multitool:extension.bzl", "multitool")
3030
multitool.hub(lockfile = "//format:multitool.lock.json")
3131
multitool.hub(lockfile = "//lint:multitool.lock.json")
3232
use_repo(multitool, "multitool")
3333

34-
bazel_dep(name = "stardoc", version = "0.7.0", dev_dependency = True, repo_name = "io_bazel_stardoc")
34+
# protoc = use_extension("@toolchains_protoc//protoc:extensions.bzl", "protoc", dev_dependency = True)
35+
# protoc.toolchain(version = "v26.0")
36+
# use_repo(protoc, "toolchains_protoc_hub")
37+
38+
# register_toolchains("@toolchains_protoc_hub//:all", dev_dependency = True)

WORKSPACE.bazel

-1
This file was deleted.

docs/.bazelversion

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../.bazelversion

docs/BUILD.bazel

+15-15
Original file line numberDiff line numberDiff line change
@@ -4,77 +4,77 @@ load("@aspect_bazel_lib//lib:docs.bzl", "stardoc_with_diff_test", "update_docs")
44

55
stardoc_with_diff_test(
66
name = "lint_test",
7-
bzl_library_target = "//lint:lint_test",
7+
bzl_library_target = "@aspect_rules_lint//lint:lint_test",
88
)
99

1010
stardoc_with_diff_test(
1111
name = "buf",
12-
bzl_library_target = "//lint:buf",
12+
bzl_library_target = "@aspect_rules_lint//lint:buf",
1313
)
1414

1515
stardoc_with_diff_test(
1616
name = "eslint",
17-
bzl_library_target = "//lint:eslint",
17+
bzl_library_target = "@aspect_rules_lint//lint:eslint",
1818
)
1919

2020
stardoc_with_diff_test(
2121
name = "flake8",
22-
bzl_library_target = "//lint:flake8",
22+
bzl_library_target = "@aspect_rules_lint//lint:flake8",
2323
)
2424

2525
stardoc_with_diff_test(
2626
name = "keep_sorted",
27-
bzl_library_target = "//lint:keep_sorted",
27+
bzl_library_target = "@aspect_rules_lint//lint:keep_sorted",
2828
)
2929

3030
stardoc_with_diff_test(
3131
name = "pmd",
32-
bzl_library_target = "//lint:pmd",
32+
bzl_library_target = "@aspect_rules_lint//lint:pmd",
3333
)
3434

3535
stardoc_with_diff_test(
3636
name = "checkstyle",
37-
bzl_library_target = "//lint:checkstyle",
37+
bzl_library_target = "@aspect_rules_lint//lint:checkstyle",
3838
)
3939

4040
stardoc_with_diff_test(
4141
name = "spotbugs",
42-
bzl_library_target = "//lint:spotbugs",
42+
bzl_library_target = "@aspect_rules_lint//lint:spotbugs",
4343
)
4444

4545
stardoc_with_diff_test(
4646
name = "format",
47-
bzl_library_target = "//format:defs",
47+
bzl_library_target = "@aspect_rules_lint//format:defs",
4848
)
4949

5050
stardoc_with_diff_test(
5151
name = "stylelint",
52-
bzl_library_target = "//lint:stylelint",
52+
bzl_library_target = "@aspect_rules_lint//lint:stylelint",
5353
)
5454

5555
stardoc_with_diff_test(
5656
name = "ruff",
57-
bzl_library_target = "//lint:ruff",
57+
bzl_library_target = "@aspect_rules_lint//lint:ruff",
5858
)
5959

6060
stardoc_with_diff_test(
6161
name = "shellcheck",
62-
bzl_library_target = "//lint:shellcheck",
62+
bzl_library_target = "@aspect_rules_lint//lint:shellcheck",
6363
)
6464

6565
stardoc_with_diff_test(
6666
name = "vale",
67-
bzl_library_target = "//lint:vale",
67+
bzl_library_target = "@aspect_rules_lint//lint:vale",
6868
)
6969

7070
stardoc_with_diff_test(
7171
name = "ktlint",
72-
bzl_library_target = "//lint:ktlint",
72+
bzl_library_target = "@aspect_rules_lint//lint:ktlint",
7373
)
7474

7575
stardoc_with_diff_test(
7676
name = "clang-tidy",
77-
bzl_library_target = "//lint:clang_tidy",
77+
bzl_library_target = "@aspect_rules_lint//lint:clang_tidy",
7878
)
7979

8080
update_docs(name = "update")

docs/MODULE.bazel

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
bazel_dep(name = "aspect_bazel_lib", version = "2.14.0")
2+
bazel_dep(name = "aspect_rules_lint", version = "0.0.0")
3+
4+
bazel_dep(name = "stardoc", version = "0.7.0", dev_dependency = True, repo_name = "io_bazel_stardoc")
5+
6+
local_path_override(
7+
module_name = "aspect_rules_lint",
8+
path = "..",
9+
)

0 commit comments

Comments
 (0)