mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
42dec90bc4
## 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.
28 lines
585 B
Python
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"],
|
|
)
|