'Xcode continuous integration stack on "building sources"
I don't know how to solve this. Is it a bug of Xcode or did I miss something?
The following are the settings of my Bot:
Does repository git path is correct?
Because I have it in Apps/DirectBistro/.git.
Something is not right here but I do not know what.
The error is the following:
Build Service Error Running task was terminated because it produced no activity for more than 600 seconds (use sudo xcrun xcscontrol --configure-integration-timeout to increase this timeout)
Solution 1:[1]
In our case it was due to broken permissions. It usually happens after Xcode Server or macOS update.
This can be fixed with:
$ sudo xcrun xcscontrol --fix-permissions
In case it won't help, try resetting Xcode Server (NB! this will delete all your bots and history):
$ sudo xcrun xcscontrol --reset
Solution 2:[2]
I had the same bug and solved it using the following steps:
- Save all files in your project
- Remove all files and commit
- Add all files, commit and push
- Remove the contents of the file
.gitignore - Add all the files using
git add . - Commit and push
Solution 3:[3]
For my case,
- Xcode 10
- my build time is more than 600 seconds
Running task was terminated because it produced no activity for 600 seconds
In Preferences > Server & Bots > Integration timeout
Increase it to more than 10 minutes
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | |
| Solution 2 | LuÃs Cruz |
| Solution 3 | Ted |







