简体   繁体   中英

Checking for Errors Running xcodebuild (Command Line) for iOS

I'm currently working on a script to build my iOS projects.

I am able to run the archive command using...

xcodebuild -workspace <workspace_name> -scheme <scheme_name> 'archive'

But what is the best way to check for errors? If there is a way to do it without parsing the logs, it would be great. However, if parsing the logs is the best way, what's the best string to look for?

I tested for return codes. xcodebuild returns 0 on success, but also when there are build errors.

Thanks in advance!

Using -project parameter, you can build your project. Goto your Project.xcodeproj folder on terminal . Then type,

xcodebuild -project projectname.xcodeproj

Check this xcodebuild reference .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM