mirror of
https://github.com/openai/codex.git
synced 2026-09-06 15:29:32 +00:00
## What changed - Add a Bazel test rule that runs the shared Noise relay compatibility suite with current or packaged Codex binaries. - Cover both app-server/exec-server directions for the current build, release `0.149.1`, and the minimum supported release `0.145.0` on Linux x86-64. - Remove the standalone version-skew download scripts and the protocol constant they used. ## Testing The new `exec-server-current-version-test`, `exec-server-stable-release-test`, and `exec-server-minimum-release-test` targets exercise the compatibility suite. GitOrigin-RevId: 6b3b91eea8e05a38bec1fac128afc54f0d654014
12 lines
214 B
Rust
12 lines
214 B
Rust
mod environment_config;
|
|
mod network_policy;
|
|
mod process_id;
|
|
mod protocol;
|
|
pub mod rpc;
|
|
|
|
pub use environment_config::*;
|
|
pub use network_policy::*;
|
|
pub use process_id::ProcessId;
|
|
pub use protocol::*;
|
|
pub use rpc::*;
|