tool · inferred from evidence
xcodebuild
A command-line tool provided by Xcode for building Xcode projects and workspaces.
- Travis CI: xcodebuild exited with 65 on iOS simulator tests (flaky, simulator not warmed up)
The flaky exit code 65 comes from the iOS simulator not being ready when tests start. Pre-start/warm the simulator at the beginning of the build before running xcodebuild (e.g. boot the target simulator device and wait for it to settle), wh
- Xcode 14 build on Codemagic exits with status code 65
Pass CODE_SIGN_STYLE=Manual to xcodebuild via the archive xcargs, like --archive-xcargs CODE_SIGN_STYLE=Manual, to override the automatic development signing on that dependency. The reporter fixed their build this way and closed the issue.