I am trying out TravisCI since I got it in my GitHub Education Pack.
I am doing TDD on iOS 10.1.
I could not yet figure out how to configure TravisCI for Swift 3.0, iOS 10.1 and using CocoaPods.
I managed to link TravisCI with my Repository. But other than that, I always get a "Build Failed" message.
Not sure if important, but I did not have the Pod folder in my Repo.
I saw a tutorial for TravisCI & Swift and recreated the travis.yml from there which looks like that:
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
I hope you can help me.
Edit 1:
Here is the log of the latest commit: