ops: fix acquisition commit path and land codex 0.144.6 parity artifacts - #161
Merged
Conversation
The acquisition commit step added `docs/support`, which is not a path this
repository has. `git add` fails the whole commit on a pathspec that matches
nothing, so the first `commit: true` run discarded a complete, valid
acquisition -- four downloads, four snapshots, the union, the report and the
version metadata -- at the very last step:
fatal: pathspec 'docs/support' did not match any files
`xtask support-matrix` publishes to `cli_manifests/support_matrix/current.json`
and `docs/specs/unified-agent-api/support-matrix.md`. Commit those, and bind the
workflow to the constants in `support_matrix.rs` with a test so renaming one
without the other fails in CI rather than at the end of an hour-long matrix.
Only a `commit: true` run could surface this; every `commit: false` proof skips
the step entirely.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
fix(parity): commit the support paths the publisher actually writes
…0.144.6 chore: open maintenance packet for codex 0.144.6
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Unblocks the nightly maintenance cron and lands the first fully-acquired
parity packet.
Acquisition commit-path fix (#160) — the commit step ran
git add docs/support, a path this repository does not have.git addfailsthe entire commit on a pathspec that matches nothing, so a complete, valid
acquisition was discarded at its final step:
Now commits the paths
xtask support-matrixactually publishes(
support_matrix::JSON_OUTPUT_PATHandMARKDOWN_OUTPUT_PATH), bound to thoseconstants by test so a rename fails in CI rather than at the end of an
hour-long matrix.
codex 0.144.6 parity artifacts (#153) — the first packet acquired
end-to-end through the reusable lane: watcher-opened PR → acquisition gate →
four-target matrix → union → report → validate → commit. Union is
complete: truewith all four targets andmissing: [], up from the stuck2-of-4. Packet CI was green on the acquisition commit.
Why this is time-sensitive
mainstill carries thedocs/supportbug and the watcher runs on17 3 * * *. It already burned one round today: three fan-out runs completedtheir full multi-OS matrices and then failed at the commit, producing nothing.
Until this lands, that repeats nightly.
Scope
No promotion.
latest_validatedstays0.125.0; 0.144.6 remainsstatus: reported. The codex lockfile change is surgical — 0.144.6 goes from2 to 4 rows and every other version's rows are byte-identical, 0.125.0
included.
Follow-on
PRs #157 (claude_code 2.1.212) and #158 (opencode 1.18.4) are stuck in the same
way and need re-acquisition once this is on
main.