Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
onevcat committed Aug 10, 2016
1 parent 8e32458 commit 6baf73d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ osx_image: xcode8
env:
matrix:
- TEST_TYPE=iOS
- TEST_TYPE=maxOS
- TEST_TYPE=macOS
- TEST_TYPE=tvOS
before_install:
- |
Expand All @@ -16,15 +16,15 @@ script:
if [ "$TEST_TYPE" = iOS ]; then
set -o pipefail
xcodebuild clean test -workspace Kingfisher.xcworkspace -scheme Kingfisher -destination "platform=iOS Simulator,name=iPhone 6 Plus" -enableCodeCoverage YES | xcpretty
elif [ "$TEST_TYPE" = maxOS ]; then
elif [ "$TEST_TYPE" = macOS ]; then
set -o pipefail
xcodebuild clean test -workspace Kingfisher.xcworkspace -scheme Kingfisher-maxOS -sdk macosx -enableCodeCoverage YES | xcpretty
xcodebuild clean test -workspace Kingfisher.xcworkspace -scheme Kingfisher-macOS -sdk macosx -enableCodeCoverage YES | xcpretty
elif [ "$TEST_TYPE" = tvOS ]; then
set -o pipefail
xcodebuild clean test -workspace Kingfisher.xcworkspace -scheme Kingfisher-tvOS -destination "platform=tvOS Simulator,name=Apple TV 1080p" -enableCodeCoverage YES | xcpretty
fi
after_success:
- |
if [ "$TEST_TYPE" = iOS ] || [ "$TEST_TYPE" = maxOS ] || [ "$TEST_TYPE" = tvOS ]; then
if [ "$TEST_TYPE" = iOS ] || [ "$TEST_TYPE" = macOS ] || [ "$TEST_TYPE" = tvOS ]; then
bash <(curl -s https://codecov.io/bash)
fi

0 comments on commit 6baf73d

Please sign in to comment.