[release/9.0.1xx] Bump to Xcode 26.3.#24796
[release/9.0.1xx] Bump to Xcode 26.3.#24796rolfbjarne wants to merge 1 commit intorelease/9.0.1xxfrom
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request bumps the Xcode version from 26.2 to 26.3 in the release/9.0.1xx branch. The changes update Xcode-related configuration in two key files to reference the new Xcode version and installation path.
Changes:
- Updated Xcode version constant in SdkVersions.cs from "26.2" to "26.3"
- Updated XCODE_VERSION, XCODE_URL, and XCODE_DEVELOPER_ROOT in Make.config to reference Xcode 26.3
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| tools/common/SdkVersions.cs | Updates the Xcode constant to "26.3" while leaving SDK versions at 26.2 |
| Make.config | Updates XCODE_VERSION, XCODE_URL, and XCODE_DEVELOPER_ROOT to reference Xcode 26.3 |
Comments suppressed due to low confidence (1)
tools/common/SdkVersions.cs:21
- The Xcode version is being updated to 26.3, but the SDK version constants (OSX, iOS, TVOS, MacCatalyst) remain at 26.2. This creates an inconsistency where the Xcode version doesn't match the SDK versions. According to the typical Xcode bump pattern in this repository, when updating Xcode versions, the corresponding platform SDK versions should also be updated to match. Additionally, the following related version constants still reference 26.2 and may need updating:
- MaxiOSSimulator (line 35)
- MaxTVOSSimulator (line 36)
- MaxiOSDeploymentTarget (line 38)
- MaxTVOSDeploymentTarget (line 39)
- TargetPlatformVersionExecutableiOS (line 41)
- TargetPlatformVersionExecutabletvOS (line 42)
- TargetPlatformVersionExecutablemacOS (line 43)
- TargetPlatformVersionExecutableMacCatalyst (line 44)
Please verify whether these SDK versions should also be bumped to 26.3, or if there's an intentional reason to keep them at 26.2 while only updating the Xcode version.
public const string Xcode = "26.3";
public const string OSX = "26.2";
public const string iOS = "26.2";
public const string TVOS = "26.2";
public const string MacCatalyst = "26.2";
✅ [CI Build #4f25204] Build passed (Build packages) ✅Pipeline on Agent |
✅ [PR Build #4f25204] Build passed (Detect API changes) ✅Pipeline on Agent |
✅ API diff for current PR / commitNET (empty diffs)✅ API diff vs stableNET (empty diffs)ℹ️ Generator diffGenerator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes) Pipeline on Agent |
✅ [CI Build #4f25204] Build passed (Build macOS tests) ✅Pipeline on Agent |
💻 [CI Build #4f25204] Tests on macOS X64 - Mac Sonoma (14) passed 💻✅ All tests on macOS X64 - Mac Sonoma (14) passed. Pipeline on Agent |
💻 [CI Build #4f25204] Tests on macOS M1 - Mac Monterey (12) passed 💻✅ All tests on macOS M1 - Mac Monterey (12) passed. Pipeline on Agent |
💻 [CI Build #4f25204] Tests on macOS arm64 - Mac Sequoia (15) passed 💻✅ All tests on macOS arm64 - Mac Sequoia (15) passed. Pipeline on Agent |
💻 [CI Build #4f25204] Tests on macOS M1 - Mac Ventura (13) passed 💻✅ All tests on macOS M1 - Mac Ventura (13) passed. Pipeline on Agent |
This comment has been minimized.
This comment has been minimized.
💻 [CI Build #4f25204] Tests on macOS arm64 - Mac Tahoe (26) passed 💻✅ All tests on macOS arm64 - Mac Tahoe (26) passed. Pipeline on Agent |
This comment has been minimized.
This comment has been minimized.
🔥 [CI Build #4f25204] Test results 🔥Test results❌ Tests failed on VSTS: test results 0 tests crashed, 13 tests failed, 102 tests passed. Failures❌ monotouch tests (MacCatalyst) [attempt 3]Details
Html Report (VSDrops) Download ❌ monotouch tests (macOS) [attempt 3]Details
Html Report (VSDrops) Download Successes✅ cecil: All 1 tests passed. [attempt 2] Html Report (VSDrops) Download Pipeline on Agent |
No description provided.