feat: proper windows support

This commit is contained in:
eric
2026-03-15 11:04:44 +01:00
parent 4f8e27cd74
commit 626a6640f8
70 changed files with 3410 additions and 1689 deletions

View File

@@ -2,7 +2,26 @@ load("@rules_shell//shell:sh_test.bzl", "sh_test")
sh_test(
name = "phase8_ci_matrix_shape_test",
size = "small",
srcs = ["phase8_ci_matrix_shape_test.sh"],
args = ["$(location //.github/workflows:ci.yml)"],
data = ["//.github/workflows:ci.yml"],
)
sh_test(
name = "native_wrapper_shape_test",
size = "small",
srcs = ["verify_native_wrapper_shape.sh"],
args = [
"$(location //tests/binary_test:configured_launcher_bin)",
"$(location //tests/script_test:workspace_flagged_script)",
"$(location //tests/js_compat_test:compat_devserver)",
"$(location //tests/bun_test_test:configured_suite)",
],
data = [
"//tests/binary_test:configured_launcher_bin",
"//tests/bun_test_test:configured_suite",
"//tests/js_compat_test:compat_devserver",
"//tests/script_test:workspace_flagged_script",
],
)