joryirving/windowstead #79: Add macOS validation to pull-request CI - #82
Closed
itsmiso-ai wants to merge 1 commit into
Closed
joryirving/windowstead #79: Add macOS validation to pull-request CI#82itsmiso-ai wants to merge 1 commit into
itsmiso-ai wants to merge 1 commit into
Conversation
Add a lightweight macOS validation job that: - Downloads the macOS Godot 4.2.2 universal binary - Verifies the binary runs - Runs the same headless smoke test on macOS This catches macOS-specific parser/runtime regressions that Linux CI doesn't detect, while keeping the macOS job lighter than full export/release workflows.
Contributor
|
✅ Automated recommendation: APPROVE Analysis engine: MiniMax-M2.7@https://api.minimax.io/v1 Review SummaryRecommendation: Approve This PR adds a macOS validation job to the PR CI workflow, fully addressing issue #79. The implementation is well-structured and follows existing patterns in the repository. Change-by-Change Findings1. New Environment Variable
2. New
|
| Requirement | Status |
|---|---|
Works in .github/workflows/test.yml |
✅ |
| Narrow macOS PR-validation job | ✅ |
| Lighter than full export/release workflow | ✅ |
| Uses repo's existing Godot version (4.2.2 stable) | ✅ |
| Validates parser/runtime/script errors on macOS | ✅ |
| Preserves existing Linux job | ✅ |
Linked Issue Fit
All acceptance criteria from #79 are met:
- ✅ Pull requests run a macOS validation job in CI
- ✅ The macOS job catches project/parser/runtime script failures before release builds
- ✅ The validation path is lighter-weight than the full release export workflow
- ✅ Linux PR validation remains intact
Unknowns or Needs Verification
None. All evidence is complete:
- Godot 4.2.2 stable macOS universal binary URL verified accessible
- Workflow syntax is valid YAML
- Job structure follows established patterns from existing Linux jobs
- No breaking changes to existing functionality
Contributor
Author
|
Closing duplicate - multiple PRs for the same issue exist. |
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.
Fixes #79. Add a lightweight macOS validation job to the PR CI workflow.
The new job:
This complements the existing Linux jobs without replacing them, keeping the macOS path lightweight (no export/release packaging). The goal is to catch macOS-specific GDScript and runtime regressions before manual prerelease testing.