2

失败的构建是https://travis-ci.org/WilliamZang/FastAnimationWithPOP/jobs/30449252

我不知道为什么会失败。

我尝试构建xctool -workspace FastAnimationWithPop.xcworkspace -scheme FastAnimationWithPopDemo -sdk iphonesimulator build test,结果相同。

我发现解决方案是添加一个 arg '-destination "platform=iOS Simulator,name=iPhone Retina (4-inch)"',它使我的构建成功。但我不知道它为什么起作用以及如何将此 arg 添加到 travis.yml。

我知道原因是'xctool -workspace FastAnimationWithPop.xcworkspace -scheme FastAnimationWithPopDemo -sdk iphonesimulator build test'只打开iphonesimulator 6。即使我指定iphonesimulator7.1它仍然使用iphonesimulator6。我不知道为什么它总是使用模拟器 6。

1天左右就尝到了,谁能救我?

4

1 回答 1

4

您可以这样做将-destination标志添加到您的 xctool 调用中(在 .travis.yml 中):

xctool_args: -destination "platform=iOS Simulator,name=iPhone Retine (4-inch)"

我们在构建开始时自动启动模拟器,听起来我们可能正在启动一个旧模拟器。

于 2014-09-16T11:56:26.483 回答