-
-
Notifications
You must be signed in to change notification settings - Fork 229
ci: Use Cirrus Runners for iOS integration tests #4951
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
Flash0ver
wants to merge
26
commits into
main
Choose a base branch
from
ci/cirrus-runners-for-integration-tests-on-mobile-devices
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+81
−33
Draft
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
1df212b
ci: Use Cirrus Runners for iOS integration tests
Flash0ver 192b825
test: add deliberate failure
Flash0ver 25b97b3
Apply suggestions from code review
Flash0ver 04a5b89
ci: Reorder matrix and fix Xcode image tag for net10.0
Flash0ver 7f51356
ci: Add FIFO concurrency groups for Cirrus iOS runners
Flash0ver 175a733
ci: Install PowerShell via dotnet global tool on Cirrus runners
Flash0ver ebc5740
ci: Add dotnet tools dir to PATH after installing PowerShell
Flash0ver aff5bf1
build: Update XHarness CLI to 10.0.0-prerelease.25622.2
Flash0ver 841dbc3
ci: Select correct Xcode version before building iOS test app
Flash0ver 7d8d1ed
cI: add debug info
Flash0ver 3776ef8
ci: fix invalid workflow file
Flash0ver 6ec1266
ci: fix invalid workflow file
Flash0ver f62fba8
Merge branch 'main' into ci/cirrus-runners-for-integration-tests-on-m…
Flash0ver 23897f2
test: remove deliberate failure
Flash0ver f5cb993
docs: update CSPROJ comment
Flash0ver b68bb19
ci: normalize iOS tests
Flash0ver 2746f32
revert: cI: add debug info
Flash0ver 2405b8e
ci: change cirrus runner image xcode version
Flash0ver 847e5e8
ci: fix missing Xcode version
Flash0ver ba35dc4
ci: make Xcode version overwritable
Flash0ver c294951
ci: Install Pester on Cirrus Runners
Flash0ver ea37662
ci: change cirrus runner image xcode version
Flash0ver bec18f0
test: update iOS Device-TestApp to available Xcode version
Flash0ver aa77b0c
ci: trust PSGallery repository
Flash0ver d638ee1
ci: omit MinimumVersion of Pester to mimic GitHub-hosted images
Flash0ver d4cf33f
ci: restore previous behavior for CI on GitHub Actions
Flash0ver File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Environment action hardcodes Xcode 26.2 breaking net9.0 runner
High Severity
The
Setup Environmentstep (using.github/actions/environment) runs before theSelect Xcodestep. The environment action hardcodessudo xcode-select --switch /Applications/Xcode_26.2.appfor all macOS runners. On thenet9.0Cirrus image (macos-tahoe-xcode:26.0.1), Xcode 26.2 is not installed — only 26.0.1 is available. This causes the environment setup to fail before the matrix-awareSelect Xcodestep gets a chance to set the correct version, completely blocking thenet9.0job.Additional Locations (1)
.github/workflows/device-tests-ios.yml#L88-L90Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed via ba35dc4 by accepting an optional
xcode-versioninput