Bot: terminated xcodebuild since it produced no output

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".


Is there any way to override the length of this timeout?

Replies

Similar problem here: http://stackoverflow.com/questions/31377758/xcode-7-bots-fastlane-how-to-automatically-deploy-an-app-to-itunes-connect
Except the timeout occurs in the posttrigger, not allowing the deliver script to finish running.


I had the same issue.

Would be good to hear if anyone found any fixes?

Radar filed: 21875004

If it says "terminated xcodebuild since it produced no output for too long", maybe make sure you produce some output when your longer running task is running? Not a fix, but might be a workaround.

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.