-
Notifications
You must be signed in to change notification settings - Fork 55
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 #21 from uber/artman/all-platforms
Adds support for tvOS and watchOS
- Loading branch information
Showing
6 changed files
with
547 additions
and
25 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,35 +1,52 @@ | ||
language: objective-c | ||
osx_image: xcode7.1 | ||
osx_image: xcode7.2 | ||
env: | ||
global: | ||
- LC_CTYPE=en_US.UTF-8 | ||
- LANG=en_US.UTF-8 | ||
- PROJECT=UberSignals.xcodeproj | ||
- IOS_FRAMEWORK_SCHEME="UberSignals iOS" | ||
- OSX_FRAMEWORK_SCHEME="UberSignals OSX" | ||
- TVOS_FRAMEWORK_SCHEME="UberSignals tvOS" | ||
- WATCHOS_FRAMEWORK_SCHEME="UberSignals watchOS" | ||
- IOS_SDK=iphonesimulator9.2 | ||
- OSX_SDK=macosx10.11 | ||
- TVOS_SDK=appletvsimulator9.1 | ||
- WATCHOS_SDK=watchsimulator2.1 | ||
|
||
matrix: | ||
- DESTINATION="OS=9.1,name=iPhone 6s" SCHEME="UberSignals iOS" SDK=iphonesimulator9.1 RUN_TESTS="YES" BUILD="YES" POD_LINT="NO" | ||
- DESTINATION="OS=9.0,name=iPhone 6 Plus" SCHEME="UberSignals iOS" SDK=iphonesimulator9.1 RUN_TESTS="YES" BUILD="YES" POD_LINT="NO" | ||
- DESTINATION="OS=8.4,name=iPhone 6" SCHEME="UberSignals iOS" SDK=iphonesimulator9.1 RUN_TESTS="YES" BUILD="NO" POD_LINT="NO" | ||
- DESTINATION="OS=8.3,name=iPhone 5S" SCHEME="UberSignals iOS" SDK=iphonesimulator9.1 RUN_TESTS="YES" BUILD="NO" POD_LINT="NO" | ||
- DESTINATION="OS=8.2,name=iPhone 5" SCHEME="UberSignals iOS" SDK=iphonesimulator9.1 RUN_TESTS="YES" BUILD="NO" POD_LINT="NO" | ||
- DESTINATION="OS=8.1,name=iPhone 4S" SCHEME="UberSignals iOS" SDK=iphonesimulator9.1 RUN_TESTS="YES" BUILD="NO" POD_LINT="YES" | ||
- DESTINATION="platform=OS X,arch=x86_64" SCHEME="UberSignals OSX" SDK=macosx10.11 RUN_TESTS="YES" BUILD="YES" POD_LINT="NO" | ||
- DESTINATION="OS=8.1,name=iPhone 4S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="YES" | ||
- DESTINATION="OS=8.2,name=iPhone 5" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" | ||
- DESTINATION="OS=8.3,name=iPhone 5S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" | ||
- DESTINATION="OS=8.4,name=iPhone 6" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" | ||
- DESTINATION="OS=9.0,name=iPhone 6 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" | ||
- DESTINATION="OS=9.1,name=iPhone 6S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" | ||
- DESTINATION="OS=9.2,name=iPhone 6S Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" | ||
- DESTINATION="arch=x86_64" SCHEME="$OSX_FRAMEWORK_SCHEME" SDK="$OSX_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="NO" POD_LINT="NO" | ||
- DESTINATION="OS=9.1,name=Apple TV 1080p" SCHEME="$TVOS_FRAMEWORK_SCHEME" SDK="$TVOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="NO" POD_LINT="NO" | ||
- DESTINATION="OS=2.1,name=Apple Watch - 38mm" SCHEME="$WATCHOS_FRAMEWORK_SCHEME" SDK="$WATCHOS_SDK" RUN_TESTS="NO" BUILD_EXAMPLE="NO" POD_LINT="NO" | ||
|
||
before_install: | ||
- gem install slather -N | ||
- gem install slather -N | ||
|
||
script: | ||
- set -o pipefail | ||
- xcodebuild -version | ||
- xcodebuild -showsdks | ||
- instruments -s devices | ||
- if [ $BUILD == "YES" ]; then | ||
xcodebuild -project UberSignals.xcodeproj -scheme "$SCHEME" -destination "$DESTINATION" -sdk "$SDK" -configuration Debug ONLY_ACTIVE_ARCH=NO clean build | xcpretty -c; | ||
xcodebuild -project UberSignals.xcodeproj -scheme "$SCHEME" -destination "$DESTINATION" -sdk "$SDK" -configuration Release ONLY_ACTIVE_ARCH=NO clean build | xcpretty -c; | ||
xcodebuild -project "$PROJECT" -scheme "$SCHEME" -destination "$DESTINATION" -sdk "$SDK" -configuration Debug ONLY_ACTIVE_ARCH=NO clean build | xcpretty -c; | ||
xcodebuild -project "$PROJECT" -scheme "$SCHEME" -destination "$DESTINATION" -sdk "$SDK" -configuration Release ONLY_ACTIVE_ARCH=NO clean build | xcpretty -c; | ||
fi | ||
- if [ $RUN_TESTS == "YES" ]; then | ||
xcodebuild -project UberSignals.xcodeproj -scheme "$SCHEME" -destination "$DESTINATION" | ||
xcodebuild -project "$PROJECT" -scheme "$SCHEME" -destination "$DESTINATION" | ||
-configuration Debug ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES clean build test | xcpretty -c; | ||
fi | ||
- if [ $POD_LINT == "YES" ]; then | ||
fi | ||
- if [ $POD_LINT == "YES" ]; then | ||
pod lib lint --quick; | ||
fi | ||
|
||
after_success: slather | ||
|
||
notifications: | ||
email: false | ||
email: false |
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.