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

时间:2016-10-11 07:13:41

标签: continuous-integration teamcity xcode8 xcodebuild

我在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.

我该如何修复此警告?

2 个答案:

答案 0 :(得分:55)

我有同样的问题。我要在我的Jenkins服务器上运行Xcode 7(构建旧版本)和Xcode 8(构建当前的开发分支),我一直都在遇到这个问题。

解决方案:

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

这是因为即使您退出模拟器应用程序,该服务仍在运行。需要上面的命令来删除名为com.apple.CoreSimulator.CoreSimulatorService的服务。 || true是为了避免在该服务未运行时失败。

答案 1 :(得分:0)

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

  1. 将Xcode从Applications文件夹复制到另一个位置
  2. 删除“应用程序”中剩下的副本。确保没有Xcode的副本
  3. 将步骤1中的副本移回“应用程序”文件夹
  4. 重新启动的计算机
  5. 似乎没有设置某个值,因为Xcode没有通过App store安装。