ci: fix dependencies

This commit is contained in:
eric
2026-03-15 13:54:18 +01:00
parent 54109136ab
commit f975f12553
37 changed files with 522 additions and 148 deletions

View File

@@ -45,12 +45,12 @@ sh_test(
size = "small",
srcs = ["toolchain_version.sh"],
args = select({
":linux_x86_64": ["$(location @bun_linux_x64//:bun)"],
":linux_aarch64": ["$(location @bun_linux_aarch64//:bun)"],
":darwin_x86_64": ["$(location @bun_darwin_x64//:bun)"],
":darwin_aarch64": ["$(location @bun_darwin_aarch64//:bun)"],
":windows_x86_64": ["$(location @bun_windows_x64//:bun)"],
"//conditions:default": ["$(location @bun_linux_x64//:bun)"],
":linux_x86_64": ["$(rlocationpath @bun_linux_x64//:bun)"],
":linux_aarch64": ["$(rlocationpath @bun_linux_aarch64//:bun)"],
":darwin_x86_64": ["$(rlocationpath @bun_darwin_x64//:bun)"],
":darwin_aarch64": ["$(rlocationpath @bun_darwin_aarch64//:bun)"],
":windows_x86_64": ["$(rlocationpath @bun_windows_x64//:bun)"],
"//conditions:default": ["$(rlocationpath @bun_linux_x64//:bun)"],
}),
data = select({
":linux_x86_64": ["@bun_linux_x64//:bun"],
@@ -66,6 +66,6 @@ sh_test(
name = "toolchain_resolution_matrix_test",
size = "small",
srcs = ["toolchain_resolution_matrix.sh"],
args = ["$(location //tests/toolchain_test:BUILD.bazel)"],
args = ["$(rlocationpath //tests/toolchain_test:BUILD.bazel)"],
data = ["//tests/toolchain_test:BUILD.bazel"],
)