Files
Adam Perry @ OpenAI 42dec90bc4 bazel: add PowerShell to Wine test harness (#28120)
## Why

Cross-OS tests in the wine environment will be much more faithful if we
can also test powershell integration.

## What

Add an x86_64 powershell binary to the bazel wine environment and
include smoke tests.
2026-06-14 04:52:32 +00:00

28 lines
585 B
Python

package(default_visibility = ["//visibility:public"])
exports_files(["pwsh.exe"])
filegroup(
name = "pwsh",
srcs = ["pwsh.exe"],
tags = ["manual"],
)
# The executable is also a stable marker whose parent is the runtime root.
filegroup(
name = "runtime_marker",
srcs = ["pwsh.exe"],
tags = ["manual"],
)
filegroup(
name = "runtime",
srcs = glob(
["**"],
# This BUILD file is also loaded from the source tree, where the
# archive-only paths are intentionally absent.
allow_empty = True,
),
tags = ["manual"],
)