Skip to content

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

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

XCode simulators failing when booting or using openurl #7971

Closed
3 of 10 tasks
fpkamp opened this issue Jul 25, 2023 · 64 comments
Closed
3 of 10 tasks

XCode simulators failing when booting or using openurl #7971

fpkamp opened this issue Jul 25, 2023 · 64 comments

Comments

@fpkamp
Copy link

fpkamp commented Jul 25, 2023

Description

Hi, I have been redirected from GitHub Support to describe our use case and perhaps influence future performance of your runner for macOS.
We have a use case where we need to use XCode 14.3.1 and XCode 15.0 on the macOS13 runner.
We create simulators with iPhones and navigate to a url and then we dispose the simulator.
All of the above works pretty well locally, but it fails when executing in GitHub Actions.
The behavior between XCode versions is different, with XCode 14 timing out on booting or navigating, however XCode 15 fails on other functions (perhaps an effect of changes to XCode itself) like binding launchd_sim.
An example failure message I get would be:

An error was encountered processing the command (domain=NSPOSIXErrorDomain, code=60):
Unable to boot the Simulator.
launchd failed to respond.
Underlying error (domain=com.apple.SimLaunchHostService.RequestError, code=4):
	Failed to start launchd_sim: could not bind to session, launchd_sim may have crashed or quit responding

In the ticket that has originally redirected me here, Arthur says he was successful with adding a cache clean (~/Library/Caches/ and ~/Library/Developer/CoreSimulator/Caches/) and waiting 60-120 seconds, however upon trying that I observed that it only works for a single simulator and subsequent simulators would fail (at least using a rinse and repeat approach).

Platforms affected

  • Azure DevOps
  • GitHub Actions - Standard Runners
  • GitHub Actions - Larger Runners

Runner images affected

  • Ubuntu 20.04
  • Ubuntu 22.04
  • macOS 11
  • macOS 12
  • macOS 13
  • Windows Server 2019
  • Windows Server 2022

Image version and build link

version: 20230611.2
workflow run: https://github.com/fingerprintjs/fingerprintjs-pro/actions/runs/5646633166/job/15295123030

Is it regression?

no

Expected behavior

Simulators work smoothly and boot / open urls without crashing.

Actual behavior

Attempts to boot simulators and navigate to a URL fail very frequently.

Repro steps

Use the following script in a macOS 13 runner workflow:
open /Applications/Xcode_14.3.1.app/Contents/Developer/Applications/Simulator.app/ phone1=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl create iPhone-hzso25lt6h9 com.apple.CoreSimulator.SimDeviceType.iPhone-14 com.apple.CoreSimulator.SimRuntime.iOS-16-4) echo "${phone1}" boot1=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl boot ${phone1}) echo "${boot1}" phone2=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl create iPhone-sios1839ti com.apple.CoreSimulator.SimDeviceType.iPhone-14 com.apple.CoreSimulator.SimRuntime.iOS-17-0) echo "${phone2}" boot2=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl boot ${phone2}) rm -r ~/Library/Caches/* rm -r ~/Library/Developer/CoreSimulator/Caches/* sleep 120 nav1=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl openurl booted 'https://google.com') echo "${nav1}" echo "${boot2}" rm -r ~/Library/Caches/* rm -r ~/Library/Developer/CoreSimulator/Caches/* sleep 120 nav2=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl openurl ${phone2} 'https://google.com') echo "${nav2}"

@sergei-pyshnoi
Copy link
Contributor

Hello @fpkamp . Thanks for your report. MacOS 13 in beta state for now so it can have some issues like this. We will investigate problem and return with feedback as we get any result.

@ilia-shipitsin ilia-shipitsin self-assigned this Jul 25, 2023
@ilia-shipitsin
Copy link
Contributor

@fpkamp , we are preparing new macos-13 image with xcode update. we are not certain on time framing, probably 2 weeks or so.

can you provide repro steps so we can test your scenario on updated image ?

@ilia-shipitsin
Copy link
Contributor

@fpkamp , we deployed new image today (macos-13.5 + xcode-15.0 Beta2), please try

@joshuapoq
Copy link

joshuapoq commented Aug 2, 2023

Crossposting my message here as it might relate: #8023 (comment)

Our builds are now reaching an hour and timing out. It's taking from 2 to 11 minutes of time between each test bundle for our frameworks (24 test bundles). It was previously taking between 3 and 15 seconds.

I think this new deploy might be to blame as there were no issues on Monday. This is a considerable amount of added time.

EDIT: This is for a private repo (with extensive tooling set up). Repro steps are to create a Package with multiple test targets and include the same empty test in each of them. Then set up CI to run all tests and it should take well over an hour to test 0 code. This could be an Apple issue (not at all ruling that out).

SOLUTION: Set the simulator to iPhone 14,OS=16.4 as mentioned here as the issue is it's defaulting to iOS 17.

@ilia-shipitsin
Copy link
Contributor

@joshuapoq , can you help with repro steps (or link to repo/build) ?

@fpkamp
Copy link
Author

fpkamp commented Aug 2, 2023

@ilia-shipitsin sorry, I missed your ping from last week. The repro steps are in the original ticket - to clarify, the part I pasted in the repro steps is a bash script you should execute in your workflow. You may need to install the simulators before,
so you want to first do
xcodebuild -downloadPlatform iOS

@ilia-shipitsin
Copy link
Contributor

hmm, is open a bash command ?

image

@fpkamp
Copy link
Author

fpkamp commented Aug 2, 2023

Sorry, I meant just using a normal run action, feel free to just use this
` - name: Open devices 14.3
run: |
xcodebuild -downloadPlatform iOS
open /Applications/Xcode_14.3.1.app/Contents/Developer/Applications/Simulator.app/
phone1=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl create iPhone-hzso25lt6h9 com.apple.CoreSimulator.SimDeviceType.iPhone-14 com.apple.CoreSimulator.SimRuntime.iOS-16-4)
echo "${phone1}"
boot1=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl boot ${phone1})
echo "${boot1}"
phone2=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl create iPhone-sios1839ti com.apple.CoreSimulator.SimDeviceType.iPhone-14 com.apple.CoreSimulator.SimRuntime.iOS-17-0)
echo "${phone2}"
boot2=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl boot ${phone2})
nav1=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl openurl booted 'https://google.com')

      echo "${nav1}"
      echo "${boot2}"
      nav2=$(/Applications/Xcode_14.3.1.app/Contents/Developer/usr/bin/simctl openurl ${phone2} 'https://google.com')
      echo "${nav2}"`

14.3.1 because it worked better, but obviously you can also use 15.0, I am currently running a build on the 13.5 image so I'll update soon as I get the results.

@ilia-shipitsin
Copy link
Contributor

starting with yesterday we included simulators for XCode-15 as well, i.e. xcodebuild-downloadAllPlatforms, probably xcodebuild -downloadPlatform iOS can be omitted

@fpkamp
Copy link
Author

fpkamp commented Aug 2, 2023

Just to confirm - macos-13.5 is the expected input? I see that my job has been stuck in waiting for queue for the past 4 hours, but running macos13-xl was immediate (just to rule out something on my org end I haven't been notified about)

@ilia-shipitsin
Copy link
Contributor

Just to confirm - macos-13.5 is the expected input? I see that my job has been stuck in waiting for queue for the past 4 hours, but running macos13-xl was immediate (just to rule out something on my org end I haven't been notified about)

sorry, what do you mean by "input" ?

@fpkamp
Copy link
Author

fpkamp commented Aug 3, 2023

Just to confirm - macos-13.5 is the expected input? I see that my job has been stuck in waiting for queue for the past 4 hours, but running macos13-xl was immediate (just to rule out something on my org end I haven't been notified about)

sorry, what do you mean by "input" ?

is
runs-on: macos-13.5 the correct way to specify I want my workflow to run on the image you deployed this week ?

@ilia-shipitsin
Copy link
Contributor

ilia-shipitsin commented Aug 3, 2023

Just to confirm - macos-13.5 is the expected input? I see that my job has been stuck in waiting for queue for the past 4 hours, but running macos13-xl was immediate (just to rule out something on my org end I haven't been notified about)

sorry, what do you mean by "input" ?

is runs-on: macos-13.5 the correct way to specify I want my workflow to run on the image you deployed this week ?

no.... and yes ))

labels supported:

macos-11
macos-12
macos-13
macos-latest (alias for macos-12).

if you specify "macos-13.5", GHA will try to find your attached self hosted runner with that label.

@fpkamp
Copy link
Author

fpkamp commented Aug 3, 2023

Just to confirm - macos-13.5 is the expected input? I see that my job has been stuck in waiting for queue for the past 4 hours, but running macos13-xl was immediate (just to rule out something on my org end I haven't been notified about)

sorry, what do you mean by "input" ?

is runs-on: macos-13.5 the correct way to specify I want my workflow to run on the image you deployed this week ?

no.... and yes ))

labels supported:

macos-11 macos-12 macos-13 macos-latest (alias for macos-12).

if you specify "macos-13.5" GHA will try to find your attached self hosted runner with that label.

Alright, I see, so can you please ELI5 how to use the aforementioned image?

@ilia-shipitsin
Copy link
Contributor

aforementioned image is used automatically if you specify runs-on: macos-13, currently deployed image is used for that label. no way to choose another (or previously deployed) image.

@fpkamp
Copy link
Author

fpkamp commented Aug 3, 2023

@ilia-shipitsin okay so I finally ran it on the new version and looks pretty much the same in terms of stability.

@fpkamp
Copy link
Author

fpkamp commented Aug 10, 2023

hi there, was wondering if there's any updates? Is there a new version of the runner coming, maybe? Anything I can do to help?

@ilia-shipitsin
Copy link
Contributor

Hey, @fpkamp , my access to test farm was restored today, I'll have a look

@stancho-stanchev
Copy link

stancho-stanchev commented Aug 10, 2023

@ilia-shipitsin
Since last week the builds have increased in time so much causing all sort of issues, I hope you guys find some sort of solution very soon!!!

using macOS-13 and Xcode 14.3.1 😢

@ilia-shipitsin
Copy link
Contributor

@stancho-stanchev , in current issue we investigate "Attempts to boot simulators and navigate to a URL fail very frequently."

if you observe another regression, please open an issue.

@ilia-shipitsin
Copy link
Contributor

I acknowledge issue, @fpkamp , thank for repro steps.
I'm able to run simulators using your commands. iphone is starting, even it opens www.google.com, but everything is slow.
not yet sure on which side is an issue, is it simulator itself or something with our vm.

image

@fpkamp
Copy link
Author

fpkamp commented Aug 11, 2023

@ilia-shipitsin cool, thank you. Maybe Arthur's observations here can help: Ticket 2248137. And just to confirm - did you get any exceptions or errors while issuing the commands?
If that helps, I can also say that I have recently noticed that Safari driver started failing with a lot higher rate with some exotic error suggesting the server was already closed, but I wasn't able to find any more details. So I think the problem is in the VM. The simulator worked quite well for me on my mac as well, it was only the GH runner where I started experiencing issues.

@ilia-shipitsin
Copy link
Contributor

@fpkamp , XCode 15 Beta 6 was just deployed, please test.

I did some dive on local installation. No conclusion yet, it does not work as I expect, but I'm not sure whether it is bug or feature.

@fpkamp
Copy link
Author

fpkamp commented Aug 16, 2023

@ilia-shipitsin
I've noticed there are two XCode 15's in the /Applications folder:
Xcode_15.0.0.app
Xcode_15.0.app
Which one should I use? Which one is the most current beta?

@ilia-shipitsin
Copy link
Contributor

hello, @NorseGaud , @wtto00 , @joshuapoq , @fpkamp , @stancho-stanchev

I've made some investigation, so far it looks like

  1. simulator is started
  2. it creates additional multicast targets
  3. mDNSResponder on the host is happy to log those messages
  4. IO is wasted by logging/mDNS

mDNSResponder on the host seem to be nonneccessary and it is a leftover os using desktop mac mini.
in my tests I gained some speedup by

   sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.mDNSresponder.plist
   sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.mDNSresponderHelper.plist
   sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.airportd.plist

can you please try those commands in your pipelines to check

  1. whether it will bring some side effect
  2. whether it provides speedup or not

thanks!

@mikehardy
Copy link

mikehardy commented Nov 23, 2023

@ilia-shipitsin - I tried that as I'm very interested in restoring performance to the macOS-12 levels, but it appeared to make DNS in general non-functional. Test results indicate that after running that it is no longer possible to resolve anything so git checkout fails.

Perhaps it is possible to carefully order when these commands are run such that the only activity after running them is machine-local but that seems like a fragile idea so I won't pursue it.

Runs linked to failure line, "macOS-13-runner speedup" steps are just above them:
https://github.com/invertase/react-native-firebase/actions/runs/6969529848/job/18965658862#step:3:58
https://github.com/invertase/react-native-firebase/actions/runs/6969529845/job/18965654159#step:6:59

@ilia-shipitsin
Copy link
Contributor

@mikehardy , thank for your feedback.
can you try unloading diagnosticd instead ?

sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.diagnosticd.plist

(also, I've found that simulator has its own diagnosticd, I'm looking at it)

@mikehardy
Copy link

@ilia-shipitsin with that one line unloading diagnosticd.plist my workflow was functional (a good thing of course) but performance did not seem to be greatly enhanced if enhanced at all. Performance testing usually requires a large number of pre/post runs which I don't have the time to do, so I can't tell you with any confidence if it was some small percentage faster or not, but I can say that the difference between macos12 and macos13 runners (and/or Xcode15/ios17 vs behavior) was kind of a "two or more times slower" performance hit, and your change was not enough to restore that large of a difference - it was marginal if anything

Hopefully that's useful. I won't have time to do much more testing today as I was just piggy-backing on a PR that was running workflows anyway and I need to move on

@ilia-shipitsin
Copy link
Contributor

@mikehardy , I'll try different things on https://github.com/invertase/react-native-firebase

@ilia-shipitsin
Copy link
Contributor

@mikehardy , is there a branch for macos 12 ? (I would like to compare things between macos-12 and macos-13 using that repo)

image

@mikehardy
Copy link

@ilia-shipitsin hmm not easily. I think you could change one line that specifies the simulator to something available on both and it would work though?

https://github.com/invertase/react-native-firebase/blob/main/tests/package.json#L66

https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#installed-simulators
https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md#installed-simulators

"iPhone 14" is allegedly available for the value of Xcode that is "xcode-current" on macOS12 and macOS13, although that wasn't working for me for some reason on Xcode 15 - I don't recall trying too hard to investigate or fix it though

If that doesn't work, could easily add a matrix check in the workflow yaml you are working with such that you execute a "tests:ios:test-cover" for macOS-13 and a new "tests:ios:test-cover-macos12" script you add here that references a new "ios.sim.debug.macos12" stanza you add here with iPhone 14 for macOS12

a little bit of a detour vs your goal here but I think that would work well and be quick to do

@ilia-shipitsin
Copy link
Contributor

@mikehardy , thank for the tip. I'm able to run "iPhone 14" on both macos-12 and macos-13. give me some time to compare results.

actually, macos-12 runs test in 7 min while macos-13 need ~50 min even with "yeetd" enabled. no idea why, but we can try to find out

@mikehardy
Copy link

@mikehardy , thank for the tip. I'm able to run "iPhone 14" on both macos-12 and macos-13. give me some time to compare results.

actually, macos-12 runs test in 7 min while macos-13 need ~50 min even with "yeetd" enabled. no idea why, but we can try to find out

macos-13 has been about that painful, yes 😂. Appreciate that you're examining, I believe everyone will appreciate any progress!

@ilia-shipitsin
Copy link
Contributor

@mikehardy , what caught my eyes is really huge simulator log. I noticed that tests run in debug mode. can we try to either disable logging or reduce them to release ?

I collected logs from macos-12 and macos-13 and parsed them by Microsoft LogParser using the following query

SELECT COUNT(*) AS Total, SUBSTR(EXTRACT_PREFIX(Field1,0,'['),24) AS Service FROM 'C:\i\simulator-log\13\simulator.log'
WHERE Field1 like '2023%'
GROUP BY Service
ORDER BY Total DESC

image

image

something interesting with SpringBoard. what's that )) ?

(well, I suspect it might be a regression on XCode itself or some side effect of running simulators on virtualized hardware, @NorseGaud do you have any idea why SpringBoard can be that noisy under anka platform maybe ?)

@ilia-shipitsin
Copy link
Contributor

the most noisy SpringBoard activity is [com.apple.xpc:connection]

image

@ilia-shipitsin
Copy link
Contributor

as for "xpc connection" ....

image

@mikehardy
Copy link

@mikehardy , what caught my eyes is really huge simulator log. I noticed that tests run in debug mode. can we try to either disable logging or reduce them to release ?

Well, anything is possible @ilia-shipitsin :-) - my use case for the simulator.log is so that I can troubleshoot things like this when they go wrong though - it is not always our app, sometimes it is some rogue networking thing though, and the simulator.log is how it is discovered - as you've done (awesome by the way)

I'm willing to try anything but I don't know how I'll do a more efficient job than you are already doing on the fork. From the perspective of our workflows the simulator.log is not used as any sort of end product it is just for troubleshooting, so you could disable the simuator.log capture / zip / upload entirely and our workflow would still be doing it's job (assuming there wasn't an app crash where I needed to grab the stack trace...)

I'm going to guess though, disabling the simulator log will provide a substantial speedup by removing IO, but if you assume that the job is compute-bound and the IO is streaming/buffered then my guess is the macos13/Xcode15/ios17 slowdown we are all seeing is because the Simulator's networking/springboard subsysytem is doing something terrible that is also CPU heavy, so the speedup will not be nearly enough to get back to macOS12/Xcode14/ios16 levels

https://developer.apple.com/documentation/xpc/1448777-xpc_connection_cancel - XPC is some interprocess communication, not sure which processes are trying to communicate and/or why it's failing but something is definitely not happy on these new versions of the iOS simulator stack

@ilia-shipitsin
Copy link
Contributor

@mikehardy , we did more investigation (will provide result later). also, we tried to run react-native-firebase on arm64 (also virtualized) runner

https://github.com/bbq-beets/react-native-firebase/actions/runs/7030335355/job/19129684183

as far as I understand, arm64 does not support nested virtualization, but it should only affect android simulators, not iOS.

can we add some debug to find why 09:45:59.561 detox[12510] ERROR: [APP_UNREACHABLE] Detox can't seem to connect to the test app(s)! ?

@mikehardy
Copy link

@ilia-shipitsin sorry for the delay!

The test app connection is the last step in a wobbly tower of things that have to go correctly, it happens when the test infrastructure correctly requests Simulator start, the operating system has started the simulator correctly, the simulator has booted completely and the test infrastructure can see it is up, then the test infrastructure has correctly loaded the app on to the simulator and asked it to start and finally the app itself has started completely and fetched the javascript bundle from the bundle server, loaded it and started executing

Determining why it did not start is what the simulator.log running in Debug is for :-)

I look for a few markers to see what stage things got to. One is the case-insensitive string "crashlytics" - if this never shows up, the app native code never booted and ran so as a binary search, we're looking at simulator startup failure or app load/start failure (where failure may be timeout / just took too long)

If "crashlytics" shows up then things should start happening pretty quickly and I search for the app name and/or "react" and/or "rnfb" to see if the javascript bundle loaded and app components started loading and getting chatty

My guess is this was just more poor performance (a 2GB+ log file! ouch) meaning things were happening slowly enough that the test infrastructure considered it a failure and timed it out

@jeanregisser
Copy link

jeanregisser commented Dec 4, 2023

Hey, I'm dealing with similar issues using macos-13-xlarge (i.e. running on M1).

I was unable to get Detox to work using multiple workers.
Apparently it fails too boot the simulators, or they are really slow.
I see a lot of 14:34:36.027 detox[60482] i Error: Unable to update lock within the stale threshold right after starting the detox test.
See the full logs.

Then I tried using a single worker.
And things got better. But it was still quite slow and it reached the 45 mins timeout I had set for that part of the workflow.
See the full logs.

This was using Xcode 14.3.1 and iOS 16.4 simulators.

Is there a limitation on how many simulators can be run?
Well there's always a limit of course, but I'd expect to be able to run more than 1 simulator.
Note: we also have dedicated macOS runners we maintain which are able to spin up 6 simulators without sweating. And that's still on Intel CPUs (i7/3.2Ghz/6C/64G). We were hoping to replace them with the new macos-13-xlarge runners.

Anyway, thanks for all the useful info in this thread. I'm gonna try a few more things.
But let me know if there's anything I can do to help. 🙏

@ilia-shipitsin
Copy link
Contributor

crashlytics

thank you, it was helpful.

from current observation it looks like simulators are created on arm64, but due to degraded performance it looks like they are not responsive.

@NorseGaud
Copy link

Quick update from my testing with react-native-firebase:

If I run this manually, I can choose the GPU type in the Simulator menu and see different times with a slight performance improvement using Integrated GPU.

Integrated GPU in Simulator:
SIMCTL_CHILD_GULGeneratedClassDisposeDisabled=1 ./node_modules/.bin/nyc yarn   13.97s user 2.49s system 6% cpu 4:29.95 total

Discrete GPU in Simulator:
SIMCTL_CHILD_GULGeneratedClassDisposeDisabled=1 ./node_modules/.bin/nyc yarn   14.56s user 3.61s system 5% cpu 5:07.03 total

Not much of a difference, but it's something to note as a possibility for improvement.

The messaging() tests timeout in any kind of virtualization, but seems like all other tests work fine. Maybe relevant for @mikehardy. I collected the Console logs from macOS while the test was seemingly hanging.

console-messaging-full.log
console-messaging-errors-only.log

I don't know what firebase.messaging in the test is actually doing, but I do think there may be something from the Console logs that the developers could see that helps us pinpoint for Apple what's wrong.

@mikehardy
Copy link

Interesting @NorseGaud - do you have a workflow run URL you can point me to where you extracted those logs? Or could you specify the execution environment? I'm to go on a hunch that this was an Apple Silicon machine of some sort?

That is a difference (intel silicon mac vs apple silicon mac) that varies the messaging testing as apple silicon macs with latest emulators can actually generate APNS tokens and receive APNS messages and we attempt to test that if it's recent enough simulator on apple silicon. It should work of course, but - for the purposes of the testing here, we are an open source repository limited to running on the currently available intel silicon runners, so I don't think it's germane to the current focus here unfortunately

@NorseGaud
Copy link

NorseGaud commented Dec 15, 2023

do you have a workflow run URL you can point me to where you extracted those logs

I don't :( I set up the project manually in a VM of several virtualization tools and got the same results across them all. The error is identical to the ones in the github runners.

Specs for the logs provided:

  • Xcode 15.1 / iPhone 14 / 16.4
  • macOS 14.2
  • Silicon arch

Understood about not testing on Arm, though the result is exactly the same on macOS 13-14 and Xcode 15.x, regardless of the architecture. It's just faster and easier for me to test on ARM right now :)

Unless there is something in these logs that indicates a problem with a service that VMs don't have or isn't working right, I do worry we won't be able to do much until we can describe in detail what Apple has to fix :(

@NorseGaud
Copy link

NorseGaud commented Dec 19, 2023

I am unable to reproduce boot issues anymore with iOS 17.2. The simulators load just fine (but are still a bit heavy on usage) for my test apps and no longer hang.

Regarding certain functions, I don't see a difference though.

@mikehardy
Copy link

Good to know @NorseGaud but unfortunately does not look like that's available in hosted runners yet https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md#xcode

@NorseGaud
Copy link

Sorry @mikehardy , I was speaking about simulator booting issues. The issues with your tests persist AFAIK.

@actions actions locked and limited conversation to collaborators Dec 26, 2023
@mikhailkoliada mikhailkoliada converted this issue into discussion #9066 Dec 26, 2023

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Projects
None yet
Development

No branches or pull requests

10 participants