ci: merge cli-self-update into cli-e2e-test job#554
Merged
Conversation
Eliminates 3 redundant runners (ubuntu, mac, windows) that duplicated the entire setup/build pipeline just to run self-update tests. Self-update tests now run as additional steps at the end of the cli-e2e-test job, reusing the already-built CLI.
fengmk2
force-pushed
the
ci/merge-self-update-into-e2e
branch
from
February 8, 2026 00:08
41aa221 to
7debb35
Compare
fengmk2
marked this pull request as ready for review
February 8, 2026 00:31
cpojer
approved these changes
Feb 9, 2026
wan9chi
added a commit
that referenced
this pull request
Jul 22, 2026
Bumps the vite-task git-dependency crates (`fspy`, `pty_terminal_test`, `pty_terminal_test_client`, `snapshot_test`, `vite_path`, `vite_powershell`, `vite_str`, `vite_task`, `vite_workspace`) from `4003f65` to `85d4e73`. ## Changelog All three new entries are internal bug fixes with no user-facing CLI/config changes, so no docs updates are needed: - Task cache now supports much larger automatically tracked input sets without hitting wincode's default 4 MiB sequence preallocation limit ([#554](voidzero-dev/vite-task#554)) - npm workspace patterns beginning with `./` now discover matching packages correctly ([#547](voidzero-dev/vite-task#547)) - Failures while forwarding output from a started task process no longer incorrectly report that the process failed to spawn ([#506](voidzero-dev/vite-task#506)) Full diff: ``https://github.com/voidzero-dev/vite-task/compare/4003f65a3e5e3d957ff81b157e85e6ee41cc59fc...85d4e734c64c96c2ce60e734b3e202b5add53696#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed`` ## Verification - `cargo check --workspace` — clean (no breaking changes; the PTY snapshot runner compiles against the new vite-task crates without changes) - `cargo test` across the vite-plus crates (`vite_command`, `vite_error`, `vite_install`, `vite_js_runtime`, `vite_migration`, `vite_shared`, `vite_static_config`, `vite-plus-cli`, `vite_global_cli`) — all pass - PTY snapshot suite (global flavor): the task-runner/cache output cases that the bump could affect (`command_run_help`, `command_cache_*`, `shim_recursive_npm_run`) pass unchanged. The remaining failures in this sandbox are environmental (missing bootstrapped JS CLI `dist/bin.js`, and npm-registry TLS blocked by the proxy) and are left to CI, which bootstraps the CLI and registry bridge. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- _Generated by [Claude Code](https://claude.ai/code/session_01LGJPQK1jAPZVtj4eCuWMPm)_ Co-authored-by: Claude <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
Merge the
cli-self-updatejob into thecli-e2e-testjob to eliminate redundant build pipelines.Motivation
The
cli-self-updatejob ran on 3 platforms (ubuntu, mac, windows) and duplicated the entire setup: clone, setup-rust, build-upstream, and bootstrap-cli — just to run self-update tests. This added ~3-5 minutes of unnecessary runner time per CI run.Changes
cli-e2e-testjobcli-self-updatejob entirelydonejob to removecli-self-updatedependencyImpact