This repository has been archived by the owner on Dec 10, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Remove #if(swift) checks - Remove `Package.swift`. SwiftPM support is dropped. - Add SWIFT_VERSION = 2.3, aka., "Use Legacy Swift Version" set to Yes
- Loading branch information
Showing
13 changed files
with
33 additions
and
203 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,8 +1,13 @@ | ||
language: objective-c | ||
osx_image: xcode7.3 | ||
before_install: | ||
- brew update | ||
- brew uninstall xctool && brew install --HEAD xctool | ||
osx_image: xcode8 | ||
env: | ||
matrix: | ||
- TEST_TYPE=iOS | ||
- TEST_TYPE=macOS | ||
script: | ||
- xctool test -project Banana.xcodeproj -scheme 'Banana-iOS' -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | ||
- xctool test -project Banana.xcodeproj -scheme 'Banana-Mac' -sdk macosx ONLY_ACTIVE_ARCH=NO | ||
- set -o pipefail | ||
- if [ "$TEST_TYPE" = "iOS" ]; then | ||
xcodebuild test -verbose -workspace Banana.xcworkspace -scheme Banana-iOS -sdk iphonesimulator -destination "platform=iOS Simulator,OS=10.0,name=iPhone 7" ONLY_ACTIVE_ARCH=NO; | ||
elif [ "$TEST_TYPE" = "macOS" ]; then | ||
xcodebuild test -verbose -workspace Banana.xcworkspace -scheme Banana-Mac -sdk macosx; | ||
fi |
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
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.