fix: skip VM acceptance gate for pre-release tags#13
Merged
Conversation
Pre-release tags (-beta.N, -rc.N) no longer require the VM acceptance test. The validate pipeline (lint, formula audit, macOS integration test) still runs and must pass. A skipped job counts as success for the release job's `needs`. Stable tags (1.0.0+) continue to require the full VM acceptance test. The VM test requires Apple Silicon bare-metal runners with nested virtualization enabled — not available on standard GitHub-hosted macOS runners. It remains the release gate for stable versions where it can be triggered manually or via self-hosted runners. Updated VERSIONING.md to document the two-tier gate model. Co-Authored-By: Claude Sonnet 4.6 <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
Standard GitHub-hosted
macos-15runners don't support nested virtualization (they run inside VMs themselves on the free tier), so Tart can't boot a macOS guest VM. This blocks all beta releases.The fix: two-tier release gates.
v0.1.0-beta.1,v1.0.0-rc.1v1.0.0,v1.2.3Pre-releases are explicitly not fully vetted — skipping the VM gate is semantically correct. The validate pipeline still runs and must pass. Stable releases retain the full VM gate as the quality bar for "mainstream ready."
In GitHub Actions, a skipped job counts as success for
needs, soreleasestill runs whenacceptanceis skipped.After merging
Re-tag to finally publish
v0.1.0-beta.1:🤖 Generated with Claude Code