ci: run full smoke test suite in CI + version sync gate on release#10
Merged
Conversation
- Prerequisites: install Antigravity CLI (agy) instead of sunset @google/gemini-cli - Replace two pre-migration notices with a single completed-migration block - Env-var table: drop GEMINI_API_KEY (no longer read by wrapper), add AGY_BIN, mark GEMINI_BIN deprecated - FAQ: cover agy rc=0 empty-output auth symptom - Architecture diagram / Tech Stack / Project Structure labels updated - gitignore: add cache/ Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
- New smoke-test.yml: runs tests/smoke-test.sh (62 scenarios) on every PR and push to main; suite needs no provider CLIs (fake-binary injection, availability checks SKIP) — verified 58/0/3 in a clean no-CLI environment - release.yml: replace file-existence-only step with the real suite; add tag vs package.json version consistency gate (blocks mismatched tags) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Summary
Wires the existing 62-scenario
tests/smoke-test.shinto CI (it had never run anywhere but locally —release.yml's "smoke test" step was a file-existence loop), adds a tag↔package.jsonversion consistency gate to releases, and syncs both READMEs to the completed agy migration.CI (95157b3)
smoke-test.yml— runs the full suite on every PR and push tomain. The suite needs no provider CLIs: wrapper logic tests inject fake binaries viaCODEX_BIN/AGY_BIN, and CLI availability checks degrade to SKIP. Verified in a clean no-CLI environment (freshHOME, system-onlyPATH): 58 pass / 0 fail / 3 skip, ~27s wall clock. Log output isolated torunner.temp.release.yml— file-existence loop replaced by the real suite (file presence stays covered by checksum verify + tarball steps); new version-sync step blocks a release when the pushed tag doesn't matchpackage.json(match/mismatch logic simulated locally, both paths correct).Docs (40fef51)
agy) instead of the sunset@google/gemini-cli; the two pre-migration notices are replaced by a single completed-migration block (what stays / what changed).GEMINI_API_KEY(no longer read by the wrapper), addAGY_BIN, markGEMINI_BINas deprecated alias.Test plan
smoke-test.ymlfirst real run on this PR — the PR itself is the live validation🤖 Generated with Claude Code