自从我在GitHub Education Pack中获得TravisCI以来,我就在试用TravisCI。

我正在iOS 10.1上进行TDD。

我还没弄清楚如何为Swift 3.0,iOS 10.1和使用CocoaPods配置TravisCI。

我设法将TravisCI与我的存储库链接。但是除此之外,我总是收到“Build Failed”消息。

不确定是否重要,但是我在Repo中没有Pod文件夹。

我看到了TravisCI和Swift的教程,并从那里重新创建了travis.yml,如下所示:

language: objective-c

branches:
 only:
 - master
 - Development

xcode_project: Friendschallenge.xcodeproj
xcode_scheme: FriendschallengeTests
osx_image: xcode8.1
xcode_sdk: iphonesimulator10.1

script:
- xcodebuild clean build test -project Friendschallenge.xcodeproj -scheme FriendschallengeTests

我希望你能帮助我。

编辑1:

这是最新提交的日志:

TravisCI Log

最佳答案

你看到这个错误了吗?
No profiles for 'com.simnik.Friendschallenge' were found: Xcode couldn't find a provisioning profile matching 'com.simnik.Friendschallenge'.Code signing is required for product type 'Application' in SDK 'iOS 10.1'** BUILD FAILED **
根据它-您需要使用正确的配置文件。

有关它的更多信息,您可能会发现here

关于ios - 将Travis CI与Swift 3.0和CocoaPods结合使用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40873282/

10-13 07:19