mirror of
https://github.com/openai/codex.git
synced 2026-08-23 13:09:46 +00:00
## What changed - Add `codex-build-info` to resolve a packaged runtime's semantic version from `codex-package.json` while preserving the commit stamped into the executable. - Represent source builds as version `0.0.0` and expose helpers for display, serialization, and source-build detection. - Stamp `STABLE_GIT_COMMIT` into final Bazel Rust binaries so Git changes do not invalidate the shared library graph. ## Testing - Cover packaged, source, legacy, and invalid-version resolution, plus serialization round trips. GitOrigin-RevId: 669b02449644c738ba2946a1b7aafe4ec31a9edb
7 lines
123 B
Python
7 lines
123 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "build-info",
|
|
crate_name = "codex_build_info",
|
|
)
|