-
-
Notifications
You must be signed in to change notification settings - Fork 372
chore: Ensure simctl's dyld shared cache is updated #6723
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
base: main
Are you sure you want to change the base?
Changes from all commits
491da38
2ab75a7
06efd5a
cd94fa4
9a7bb7e
0afabed
32e0699
350436c
204cbdc
942db4c
d15cf55
cc3d5de
4afc798
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -77,7 +77,8 @@ on: | |
|
|
||
| jobs: | ||
| common-ui-tests: | ||
| if: ${{ !inputs.should_skip }} | ||
| # test in cirrus labs | ||
| # if: ${{ !inputs.should_skip }} | ||
| name: UI Tests Common | ||
| runs-on: ${{ inputs.run_on_cirrus_labs && fromJSON(format('["ghcr.io/cirruslabs/macos-runner:{0}", "runner_group_id:10"]', inputs.macos_version)) || inputs.macos_version }} | ||
| timeout-minutes: 40 | ||
|
|
@@ -109,6 +110,18 @@ jobs: | |
| OS_VERSION: ${{ inputs.test-destination-os }} | ||
| run: ./scripts/ci-install-platforms.sh --platforms "$PLATFORM" --os-version "$OS_VERSION" | ||
|
|
||
| - name: Install Rosetta | ||
| run: | | ||
| xcrun simctl list runtimes -v | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Rosetta installation step is incomplete.The "Install Rosetta" step doesn't actually install Rosetta - it only lists runtimes via |
||
|
|
||
| - name: Ensure simctl dyld shared cache is updated | ||
| # Xcode 15.x doesn't support this command, so we skip it for that version. | ||
| if: ${{ !contains(inputs.xcode_version, '15.') }} | ||
| run: | | ||
| xcrun simctl runtime dyld_shared_cache update --all | ||
| xcrun simctl list runtimes -v | ||
| xcrun simctl list devices | ||
|
|
||
| - name: Create simulator device | ||
| if: ${{ inputs.create_device }} | ||
| env: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.