Replies: 2 comments 4 replies
-
Hey @simonmcl! I believe I've just gone through this same problem. I was getting this in the logs, where you can see macOS is being picked by default:
The thing that saved me here was noticing that the OS versions for the simulators is |
Beta Was this translation helpful? Give feedback.
4 replies
-
I ran into this issue too and fixed it just by deleting and re-adding the simulator. Old simulator which
new one which it can find
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Select Topic Area
Bug
Body
I've recently upgraded my local machine to Sonoma and Xcode 15. I made some minor changes to a swift package based on warnings from Xcode 15 and wanted to update my github action to use Xcode 15 too. My Swift package is iOS only (due to a dependency), therefore it can't be built with Swift build, it must be built with xcodebuild forcing the destination to be iOS only. Something like this:
Otherwise it will attempt to build it for macos as well, which will cause the build to fail
This works fine on my machine for Xcode 13, 14 and 15. It works fine on github actions using Xcode 13 and 14. But when using 15, it seems to ignore this and trys to build for macos. This means i'm unable to make use of Xcode 15
Xcode 14 run using:
https://github.com/kukai-wallet/kukai-core-swift/actions/runs/7117775835
Passes without issue
Xcode 15 run using:
https://github.com/kukai-wallet/kukai-core-swift/actions/runs/7117800234
Fails due to an attempt to build on macos. Same command runs fine for me locally. ANy help would be appreciated
Beta Was this translation helpful? Give feedback.
All reactions