Skip to content

Commit

Permalink
Fix module definitions. rbe_preconfig -- unneeded?
Browse files Browse the repository at this point in the history
  • Loading branch information
restingbull committed Dec 2, 2024
1 parent 9d8ca3d commit eb4649b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 4 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module(

bazel_dep(name = "platforms", version = "0.0.10")
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "rules_java", version = "7.2.0")
bazel_dep(name = "rules_java", version = "7.6.5")
bazel_dep(name = "rules_python", version = "0.23.1")
bazel_dep(name = "rules_cc", version = "0.0.9")
bazel_dep(name = "rules_android", version = "0.1.1")
Expand Down Expand Up @@ -53,8 +53,9 @@ use_repo(remote_android_extensions, "android_gmaven_r8", "android_tools")
bazel_dep(name = "rules_jvm_external", version = "5.3")

bazel_dep(name = "bazel_ci_rules", version = "1.0.0")
use_repo_rule("@bazel_ci_rules//rules:rbe_repo.bzl", "rbe_preconfig")
rbe_preconfig = use_repo_rule("@bazel_ci_rules//:rbe_repo.bzl", "rbe_preconfig")
rbe_preconfig(
name = "rbe_preconfig",
toolchain = "ubuntu2004",
)

Expand Down Expand Up @@ -118,4 +119,4 @@ use_repo(
)

bazel_dep(name = "buildkite_config")
local_path_override("buildkite_config", "//third_party/buildkite_config")
local_path_override(module_name = "buildkite_config", path = "third_party/buildkite_config")
3 changes: 3 additions & 0 deletions third_party/buildkite_config/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module(
name = "buildkite_config",
)

0 comments on commit eb4649b

Please sign in to comment.