eas-cli icon indicating copy to clipboard operation
eas-cli copied to clipboard

How to get Xcode logs with eas build --platform ios --local?

Open FrancescoBonizzi opened this issue 3 years ago • 6 comments

Do you understand that any feature requests opened in this repository will be closed?

Yes

FrancescoBonizzi avatar Jan 19 '23 17:01 FrancescoBonizzi

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 avatar Jan 20 '23 15:01 wkozyra95

@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 avatar May 13 '23 14:05 hssdiv

@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 avatar Oct 06 '23 08:10 Tagir-A

@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 avatar Oct 10 '23 11:10 hssdiv

@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 avatar Mar 03 '24 06:03 brandedcow

@brandedcow what you suggested worked for me. Thanks!

RAlhawash avatar Jul 31 '24 05:07 RAlhawash