This repository has been archived by the owner on Dec 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from chillpop/master
Add test targets for tvOS and OSX
- Loading branch information
Showing
86 changed files
with
6,280 additions
and
961 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
language: objective-c | ||
osx_image: xcode7 | ||
xcode_workspace: Example/VOKMockUrlProtocol.xcworkspace | ||
xcode_scheme: VOKMockUrlProtocol | ||
xcode_sdk: iphonesimulator | ||
osx_image: xcode7.3 | ||
before_install: | ||
- brew update > /dev/null; if brew outdated | grep -qx xctool; then brew upgrade xctool; fi | ||
xcode_workspace: Example/VOKMockUrlProtocol.xcworkspace | ||
matrix: | ||
include: | ||
- xcode_scheme: VOKMockUrlProtocol | ||
xcode_sdk: iphonesimulator | ||
- xcode_scheme: VOKMockUrlProtocol-tvOS | ||
xcode_sdk: appletvsimulator | ||
- xcode_scheme: VOKMockUrlProtocol-OSX | ||
xcode_sdk: macosx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
source 'https://github.com/CocoaPods/Specs.git' | ||
|
||
target 'Tests', :exclusive => true do | ||
target 'Tests' do | ||
pod "VOKMockUrlProtocol", :path => "../" | ||
end | ||
|
||
target 'Tests-tvOS' do | ||
platform :tvos, '9.0' | ||
pod "VOKMockUrlProtocol", :path => "../" | ||
end | ||
|
||
target 'Tests-OSX' do | ||
platform :osx, '10.9' | ||
pod "VOKMockUrlProtocol", :path => "../" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.