Files
codex/codex-rs/exec-server/BUILD.bazel
starr-openai 0e64d282d2 Fix exec-server Bazel status build
Co-authored-by: Codex <noreply@openai.com>
2026-04-30 19:19:23 -07:00

13 lines
478 B
Python

load("//:defs.bzl", "codex_rust_crate")
codex_rust_crate(
name = "exec-server",
crate_name = "codex_exec_server",
deps_extra = ["@crates//:axum"],
# Keep the crate's integration tests single-threaded under Bazel because
# they install process-global test-binary dispatch state, and the remote
# exec-server cases already rely on serialization around the full CLI path.
integration_test_args = ["--test-threads=1"],
test_tags = ["no-sandbox"],
)