fix: resolve CI test failures on macos-26-intel runners#243
Open
dduvnjak wants to merge 1 commit into
Open
Conversation
Xcode 26's testmanagerd never signals readiness when xcodebuild test combines build and test in a single invocation on Intel macOS 26, causing a ~47s timeout with zero tests executed. Fix by splitting into build-for-testing + test-without-building on macos-26-intel, which avoids the testmanagerd handshake bug. Also pin macos-26-intel to Xcode 26.5 which includes Apple's fix for the daemon readiness issue. Relax performance test thresholds in HostsTextViewPerformanceTests for CI Intel runners which are significantly slower than Apple Silicon for SwiftUI layout operations (50ms→150ms, 200ms→500ms).
Author
|
@2ndalpha would appreciate if you could cut a new release with an Apple Silicon build, the Intel support in macOS 26 will end in 2027, and the app now shows a warning when starting |
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.
Xcode 26's
testmanagerdnever signals readiness whenxcodebuild testcombines build and test in a single invocation on Intel macOS 26, causing a ~47s timeout with zero tests executed. This has been broken since the macos-26-intel runner was added to the CI matrix.Root cause: The test daemon's readiness handshake fails specifically when build artifacts are being produced concurrently on Intel macOS 26. Splitting the operation into two steps avoids this.
Changes:
build-for-testing+test-without-building(workaround for the testmanagerd bug)HostsTextViewPerformanceTestsfor Intel CI runners (50ms→150ms per switch, 200ms→500ms during concurrent download) — Intel macOS 26 runners are significantly slower than Apple Silicon for SwiftUI layoutAll 16 CI jobs (8 build + 8 test) pass with this change, including the previously-failing macos-26-intel test job.