onevcat 9 年之前
父節點
當前提交
6baf73d9cb
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      .travis.yml

+ 4 - 4
.travis.yml

@@ -5,7 +5,7 @@ osx_image: xcode8
 env:
   matrix:
     - TEST_TYPE=iOS
-    - TEST_TYPE=maxOS
+    - TEST_TYPE=macOS
     - TEST_TYPE=tvOS
 before_install:
 - |
@@ -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