How to get Xcode logs with eas build --platform ios --local?
Do you understand that any feature requests opened in this repository will be closed?
Yes
We do not have a good way to do that now for local builds, in the meantime you can run the build command with env EAS_LOCAL_BUILD_SKIP_CLEANUP=1. You can find in the logs where the project is built or use EAS_LOCAL_BUILD_WORKINGDIR env to change workingdir of the local build(careful, local build will delete everything from that directory before build starts). Xcode logs are storred in logs directory in that workingdir.
https://github.com/expo/eas-build/blob/main/DEVELOPMENT.md
@wkozyra95 thanks, my build was failing and I was simply getting "ARCHIVE FAILED" but in that logs/.log file I found
error: Provisioning profile "...." doesn't include signing certificate "..." - which helped me to solve my issue
@hssdiv
Hey, I'm having the exact same issue. Could you help me understand how you've managed to solve it? I understand it's a signing certificate problem, but not sure how to solve it.
@Tagir-A Don't really remember, but I probably simply deleted that old provisioning profile from expo dashboard (project_name -> ios credentials) and eas-cli suggested creating new one or something
@hssdiv
Hey, I'm having the exact same issue. Could you help me understand how you've managed to solve it? I understand it's a signing certificate problem, but not sure how to solve it.
Deleting old certs from keychain access might be a solution.
https://github.com/expo/eas-cli/issues/1201#issuecomment-1446997753
@brandedcow what you suggested worked for me. Thanks!