Skip to content

Commit afcb953

Browse files
authored
[bazel] Fix bzlmod reference to @vulkan_sdk (#168767)
vulkan_sdk_setup is the name of the method that configures it, but the repo itself has the name vulkan_sdk This was caught by enabling the bzlmod flag for CI. The GH action runs `blaze test @llvm-project/...` but the target is tagged manual, so it's excluded. The buildkite CI runs `bazel query | xargs bazel test` which will include manual targets.
1 parent 5611268 commit afcb953

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

utils/bazel/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use_repo(
2121
"llvm-raw",
2222
"llvm_zlib",
2323
"vulkan_headers",
24-
"vulkan_sdk_setup",
24+
"vulkan_sdk",
2525
"gmp",
2626
"mpfr",
2727
"mpc",

utils/bazel/MODULE.bazel.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

utils/bazel/extensions.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def _llvm_repos_extension_impl(module_ctx):
3636
],
3737
)
3838

39-
vulkan_sdk_setup(name = "vulkan_sdk_setup")
39+
vulkan_sdk_setup(name = "vulkan_sdk")
4040

4141
http_archive(
4242
name = "gmp",

0 commit comments

Comments
 (0)