mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
9d938a46d9
## Why We want to make it possible for an app-server orchestrator on one OS to control an exec-server on another host running a different OS. In practice this kinda already works if you get lucky and the two hosts have the same path format, but we mangle quite a lot of operations if either end is Windows. This test starts exercising that interaction, although right now the initial bootstrap fails. Future changes will expand the test's assertions to match improved support. ## What Stacked on #27964. This adds a small Windows exec-server fixture and a Linux protocol smoke test using the reusable Wine harness, covering Windows environment discovery, non-TTY `cmd.exe` execution, output, exit status, and working directory. Once we've got the full codex binary cross-building under Bazel we could consider moving to the real binary instead of the stripped down exec-server-only binary used here.
20 lines
700 B
Bash
20 lines
700 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "${repo_root}"
|
|
|
|
# Keep this list focused on first-party Rust targets whose compile surface can
|
|
# differ when `cfg(not(debug_assertions))` becomes active.
|
|
#
|
|
# Exclude the experimental `v8-poc` target because it pulls in expensive V8
|
|
# build machinery that is unrelated to the release-only Rust regression this
|
|
# workflow is meant to catch.
|
|
# The normal test job covers the Wine smoke test; omit its downloaded runtime
|
|
# and cross-compile from this build-only release sweep.
|
|
printf '%s\n' \
|
|
"//codex-rs/..." \
|
|
"-//codex-rs/core/tests/remote_env_windows:smoke-test" \
|
|
"-//codex-rs/v8-poc:all"
|