Xcode 7 + Bots + Fastlane: How to automatically deploy an app to itunes connect using Fastlane's Deliver Xcode 7 + Bots + Fastlane: How to automatically deploy an app to itunes connect using Fastlane's Deliver xcode xcode

Xcode 7 + Bots + Fastlane: How to automatically deploy an app to itunes connect using Fastlane's Deliver


I found this thread from apple developer forum:https://forums.developer.apple.com/thread/9812

In case you couldn't open it. Some people said

It seems that Xcode bot trigger scripts have a 10 second timeout - which is far too short to do any useful work. I can replicate this by adding a "Before Integration" trigger containing nothing but a call to "sleep 10". When the integration runs, it fails with the error "terminated xcodebuild since it produced no output for too long".

And possible temp solution could be

make sure you produce some output when your longer running task is running? Not a fix, but might be a workaround.

And people replied

I have done this and the error no longer occurs. I was using a bash script and needed to echo the output from time to time to workaround this issue.

Hopefully this will help for the moment.