feat: add phase 2 bun_install repository rule bootstrap

This commit is contained in:
Eric
2026-03-04 03:05:01 +00:00
parent a966a95aaa
commit 2d39b8f628
7 changed files with 186 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
sh_test(
name = "bun_install_clean_install_test",
srcs = ["clean_install.sh"],
args = ["$(location @bun_linux_x64//:bun)"],
data = ["@bun_linux_x64//:bun"],
target_compatible_with = [
"@platforms//cpu:x86_64",
"@platforms//os:linux",
],
)
sh_test(
name = "bun_install_stale_lockfile_test",
srcs = ["stale_lockfile.sh"],
args = ["$(location @bun_linux_x64//:bun)"],
data = ["@bun_linux_x64//:bun"],
target_compatible_with = [
"@platforms//cpu:x86_64",
"@platforms//os:linux",
],
)