mirror of
https://github.com/openai/codex.git
synced 2026-09-11 20:36:49 +00:00
## What changed - Add a `schema_bundle` rule that generates stable and experimental app-server schema directories as declared Bazel actions. - Include the pinned `zstd` executable in the bundle so consumers can normalize generated JSON without a separate `bazel run` invocation. - Expose the app-server protocol test binary as the schema generator and add the manual `//bazel/schema:public-schema-bundle` target. GitOrigin-RevId: 0a7ce47258d297dbf20db78626f2843145ee1b49
9 lines
221 B
Python
9 lines
221 B
Python
load("//bazel/rules:schema_bundle.bzl", "schema_bundle")
|
|
|
|
schema_bundle(
|
|
name = "public-schema-bundle",
|
|
testonly = True,
|
|
generator = "//codex-rs/app-server-protocol:schema-generator",
|
|
tags = ["manual"],
|
|
)
|