我该如何修复此警告:CoreSimulator 正在尝试卸载陈旧的 CoreSimulatorService 作业

How can i fix this warning: CoreSimulator is attempting to unload a stale CoreSimulatorService job

我在 teamcity 的构建日志中有一条警告。我已经将 CI-Server 上的 Xcode 从 7.3.1 更新到 8。步骤 运行 成功,但我有这个:

[Step 3/3] Starting: /Users/teamcity/local/teamcity-build-agent/temp/agentTmp/custom_scriptxxxxxxx
[Step 3/3] in directory: /Users/teamcity/local/teamcity-build-agent/work/yyyy
[Step 3/3] 2016-10-11 09:04:41.706 xcodebuild[18180:5010256] CoreSimulator is attempting to unload a stale CoreSimulatorService job.  Detected Xcode.app relocation or CoreSimulatorService version change.  Framework path (/Applications/Xcodes/Xcode_8.0.app/Contents/Developer/Library/PrivateFrameworks/CoreSimulator.framework) and version (303.8) does not match existing job path (/Applications/Xcodes/Xcode-7.3.1.app/Contents/Developer/Library/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc) and version (209.19).
[Step 3/3] 2016-10-11 09:04:41.961 xcodebuild[18180:5010256] Failed to locate a valid instance of CoreSimulatorService in the bootstrap.  Adding it now.

我该如何解决这个警告?

遇到了同样的问题并通过以下步骤解决了:

  1. 将“应用程序”文件夹中的Xcode复制到另一个位置
  2. 删除保留在应用程序中的副本并确保没有 Xcode 的副本保留
  3. 将步骤 1 中的副本移回“应用程序”文件夹
  4. 重启机器

似乎没有设置某些值,因为 Xcode 不是通过 App store 安装的。

我遇到了同样的问题。我必须在我的 Jenkins 服务器中 运行 Xcode 7(构建旧版本)和 Xcode 8(构建当前开发分支)并且我一直遇到这个问题。

解决方案:

launchctl remove com.apple.CoreSimulator.CoreSimulatorService || true

发生这种情况是因为,即使您退出模拟器应用程序,该服务仍处于 运行ning 状态。需要上述命令来删除名为 com.apple.CoreSimulator.CoreSimulatorService 的服务。 || true 是为了避免当该服务不是 运行ning 时失败。