关于“建筑源”的Xcode持续集成堆栈

时间:2016-07-24 13:38:26

标签: ios xcode continuous-integration xcode-server

enter image description here

我完全不知道如何解决这个问题。这是Xcode的错误还是我错过了?

以下是我的机器人的设置:

enter image description here enter image description here enter image description here

存储库git路径是否正确?

因为我在Apps/DirectBistro/.git

enter image description here

Sth不在这里,但我不知道是什么。

enter image description here

  

我会开始为那个帮助mi解决这个问题的人提供 100 的赏金。

错误如下:

  

构建服务错误运行任务已终止,因为它没有超过600秒的活动(使用sudo xcrun xcscontrol --configure-integration-timeout来增加此超时)

3 个答案:

答案 0 :(得分:0)

在我们的案例中,这是由于权限被破坏。它通常发生在Xcode Server或macOS更新之后。

这可以通过以下方式解决:

$ sudo xcrun xcscontrol --fix-permissions

如果它没有帮助,请尝试重置Xcode服务器( NB! 这将删除所有机器人和历史记录):

$ sudo xcrun xcscontrol --reset

答案 1 :(得分:0)

我遇到了同样的错误并使用以下步骤解决了这个问题:

  1. 保存项目中的所有文件
  2. 删除所有文件并提交
  3. 添加所有文件,提交并推送
  4. 删除文件.gitignore
  5. 的内容
  6. 使用git add .
  7. 添加所有文件
  8. 提交并推送

答案 2 :(得分:0)

就我而言,

  • Xcode 10
  • 我的构建时间超过 600
  

正在运行的任务被终止,因为它在600秒内没有任何活动

在“偏好设置”>“服务器与机器人”>“集成超时”中

将其增加到10分钟以上

enter image description here