Skip to content

Commit

Permalink
chore: fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle committed Sep 4, 2024
1 parent d22a3c9 commit c6fb24d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ jobs:
[
{"bazelversion": "6.4.0"},
{"folder": ".", "bzlmodEnabled": false},
{"folder": "examples", "bzlmodEnabled": false},
{"folder": ".", "os": "windows-latest"}
]
7 changes: 7 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
load("@bazel_skylib//rules:build_test.bzl", "build_test")

# Placeholder until there are docs tests
build_test(
name = "tautology",
targets = ["//:BUILD.bazel"],
)
9 changes: 9 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,12 @@ bazel_dep(name = "platforms", version = "0.0.10")

bazel_dep(name = "aspect_bazel_lib", version = "2.8.1", dev_dependency = True)
bazel_dep(name = "buildifier_prebuilt", version = "6.1.2", dev_dependency = True)

protoc = use_extension("@toolchains_protoc//protoc:extensions.bzl", "protoc")
protoc.toolchain(
name = "default_protoc",
version = "v27.3",
)
use_repo(protoc, "toolchains_protoc_hub")

register_toolchains("@toolchains_protoc_hub//:all")

0 comments on commit c6fb24d

Please sign in to comment.