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 9204d5e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ 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")

rules_kotlin_extensions = use_extension("//src/main/starlark/core/repositories:bzlmod_setup.bzl", "rules_kotlin_extensions")
use_repo(
rules_kotlin_extensions,
"bazelci_rules",
"com_github_google_ksp",
"com_github_jetbrains_kotlin",
"com_github_jetbrains_kotlin_git",
Expand Down Expand Up @@ -53,8 +52,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 +118,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")
5 changes: 5 additions & 0 deletions third_party/buildkite_config/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module(
name = "buildkite_config",
)

bazel_dep(name = "platforms", version = "0.0.10")

0 comments on commit 9204d5e

Please sign in to comment.