Use simulator queue instead of device queue for Apple mobile in runtime.yml#126406
Merged
kotlarmilos merged 3 commits intodotnet:mainfrom Apr 1, 2026
Merged
Conversation
Contributor
|
Tagging subscribers to this area: @akoeplinger, @matouskozak, @simonrozsival |
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the runtime pipeline to run Apple mobile jobs on simulator queues rather than device queues.
Changes:
- Replaces
ios_arm64/tvos_arm64platform entries withiossimulator_arm64in three runtime.yml job matrices. - Adds a tracking-issue comment alongside the new simulator platform selection.
matouskozak
approved these changes
Apr 1, 2026
Member
|
Looking good. Just pasting #123796 as this is also one of the reasons for the temporary switch. |
vitek-karas
approved these changes
Apr 1, 2026
Member
Author
|
/ba-g #126430 |
kotlarmilos
added a commit
to kotlarmilos/runtime
that referenced
this pull request
Apr 10, 2026
- Widen the preprocessor guard on m_dwTypeCount, m_dwExportedTypeCount, and m_dwCustomAttributeCount from PROFILING_SUPPORTED_DATA to PROFILING_SUPPORTED_DATA || FEATURE_METADATA_UPDATER in both ceeload.h (declaration) and ceeload.cpp (initialization). PR dotnet#126487 made these fields conditional on PROFILING_SUPPORTED_DATA, but UpdateNewlyAddedTypes() is guarded by PROFILING_SUPPORTED || FEATURE_METADATA_UPDATER. When profiling is disabled (e.g., Apple mobile platforms with FEATURE_CORPROFILER off), the function compiles but the fields do not exist, causing build failures. - Restore ios_arm64 (device) platform for the three iOS smoke test jobs in runtime.yml (Mono AOT, NativeAOT, CoreCLR), replacing the iossimulator_arm64 workaround from PR dotnet#126406. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
kotlarmilos
added a commit
that referenced
this pull request
Apr 13, 2026
> [!NOTE] > This PR description was AI/Copilot-generated. ## Description Restore `ios_arm64` (device) platform for the three iOS smoke test jobs in `runtime.yml` (Mono AOT, NativeAOT, CoreCLR), replacing the `iossimulator_arm64` workaround introduced in PR #126406 due to device queue reliability issues (tracking issue #125522). ## Changes - `eng/pipelines/runtime.yml`: Replaced `iossimulator_arm64` with `ios_arm64` for Mono, NativeAOT, and CoreCLR smoke test jobs --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
Description
The Apple mobile device queue isn't reliable, replacing it with simulators until it get's resolved.