ci: drop the AppVeyor Node matrix - one Windows job, shallow clone - #1334
Merged
Conversation
AppVeyor wall-clock on recent PRs was 4-10 min for ~65s of actual work: the free plan runs 1 concurrent job, so the 22/24 matrix serialized - job 2 waited for job 1 plus its own ~65s VM provision, tripling the run portion. Windows coverage is this job's only purpose (Actions already runs the 22/24/26 version matrix on Linux), so a single Node 24 job gives the same signal in ~1 min of run time and only one queue wait. Also clone_depth: 1 - the full clone was ~8s of the job. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
yagop
marked this pull request as ready for review
July 10, 2026 13:51
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.
Why
AppVeyor was taking 4-10 minutes end-to-end on recent PRs (e.g. #1332) for ~65 seconds of actual work. Timing data from the AppVeyor API for the last 15 builds:
Per-job breakdown (build 357): clone 8s, Install-Product node 10s, npm install 22s, typecheck 5s, unit tests 18s.
What
clone_depth: 1- shaves most of the 8s full clone.What was considered and not done
node_modules: would save ~15s of the 22s install, but cache save/restore on AppVeyor costs a similar amount for a tree this size, and there is no npm lockfile (repo shipsbun.lock) to key it reliably. Not worth it.runs-on: windows-lateststarts in seconds) and retiring AppVeyor - happy to do that in a follow-up if preferred.🤖 Generated with Claude Code