CI: pin the NOOPiOS build leg to macos-26 for the iOS 26 SDK#10
Merged
Conversation
app-build.yml's matrix build job ran both legs on macos-15, whose default Xcode doesn't ship the iOS 26 SDK (RootTabView.swift's Liquid Glass glassEffect(), landed 2026-07-07) — "value of type 'Self' has no member 'glassEffect'". Currently red on every open PR and on main itself. fork-testing-build.yml and fork-release.yml already split their NOOPiOS legs onto macos-26 for the same reason; this brings app-build.yml's PR gate into line. macos-15 stays correct for the macOS/Strand leg, which doesn't touch iOS-26-only APIs.
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
App build (macOS + iOS)is currently red on every open PR and onmainitself.app-build.yml's matrix build job runs both legs (StrandmacOS,NOOPiOS) onruns-on: macos-15. That runner's default Xcode doesn't ship the iOS 26 SDK, whichStrandiOS/App/RootTabView.swift's Liquid GlassglassEffect()(merged 2026-07-07) needs —value of type 'Self' has no member 'glassEffect'.#available(iOS 26.0, *)only gates the runtime check; the symbol still has to exist in the SDK the code is compiled against.fork-testing-build.ymlandfork-release.ymlalready split their NOOPiOS legs ontomacos-26for exactly this reason — this PR brings theapp-build.ymlPR gate into line with that existing pattern.macos-15stays correct for theStrand/macOS leg, which doesn't touch iOS-26-only APIs.runnerfield and switches the job'sruns-onto${{ matrix.runner }}.Test plan
Strand→macos-15,NOOPiOS→macos-26as intended.🤖 Generated with Claude Code