Update Tuist to 4.202.5 and use essential build settings#939
Merged
Conversation
🤖 Augment PR SummarySummary: This PR updates the Example’s Tuist setup to rely on Tuist’s essential default build settings and a newer pinned Tuist version. Changes:
Technical Notes: The key intent is to avoid macro targets building for a non-host architecture (notably on Apple Silicon) by guaranteeing essential baseline settings are applied across generated targets. 🤖 Was this summary useful? React with 👍 or 👎 |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #939 +/- ##
===========================================
+ Coverage 13.77% 25.93% +12.16%
===========================================
Files 678 721 +43
Lines 44436 50700 +6264
===========================================
+ Hits 6119 13150 +7031
+ Misses 38317 37550 -767 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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
.essentialdefault settings for the generated Example project and package targets.DEBUGdefinitions that are already provided by the essential Debug settings.Motivation
The Example manifests previously used
.none, which prevented Tuist's essential target settings from being emitted. As a result, macro targets could attempt to build for a non-host architecture and fail when consuming host-only prebuilt SwiftSyntax modules on Apple Silicon.Using
.essentialallows Tuist to emit the required baseline settings consistently across the generated project and package targets. The existingOPENSWIFTUIcompilation conditions remain explicitly configured, whileDEBUGis supplied by the essential Debug settings.Validation
OSUI_Examplewith theOpenSwiftUIDebugconfiguration for macOS arm64.