0

enter image description here

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:

enter image description here

enter image description here

enter image description here

Does repository git path is correct?

Because I have it in Apps/DirectBistro/.git.

enter image description here

Something is not right here but I do not know what.

enter image description here

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)

halfer
  • 19,824
  • 17
  • 99
  • 186
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358

3 Answers3

0

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
vadimtrifonov
  • 818
  • 8
  • 7
0

I had the same bug and solved it using the following steps:

  1. Save all files in your project
  2. Remove all files and commit
  3. Add all files, commit and push
  4. Remove the contents of the file .gitignore
  5. Add all the files using git add .
  6. Commit and push
Luís Cruz
  • 14,780
  • 16
  • 68
  • 100
0

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

enter image description here

Ted
  • 22,696
  • 11
  • 95
  • 109