xcode6 - Xcode build post script for build failed -


how can detect build failed status in post action script xcode edit scheme section different targets?

i planning send sms me if build failed in ci.

thanks in advance.

post build scripts (specified in xcode project file) executed if build passes, not when fails.

if want handle case should use continuous integration solution (ex: https://fastlane.tools/) or service (https://bitrise.io/ - cto here), or write script calls xcode's command line tool xcodebuild returns error code if can't perform given action (build, archive, test, ...), can handle case way want in script.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -