Files
rules_bun/tests/toolchain_test/BUILD.bazel
2026-03-04 20:31:58 +01:00

13 lines
321 B
Python

load("@rules_shell//shell:sh_test.bzl", "sh_test")
sh_test(
name = "bun_version_test",
srcs = ["toolchain_version.sh"],
args = ["$(location @bun_linux_x64//:bun)"],
data = ["@bun_linux_x64//:bun"],
target_compatible_with = [
"@platforms//cpu:x86_64",
"@platforms//os:linux",
],
)