Skip to content

Commit

Permalink
[CI] Add Xcode 9.3 jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesyo committed Apr 23, 2018
1 parent bebc6d3 commit 51b54c9
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .travis.yml
Expand Up @@ -6,17 +6,33 @@ matrix:
include:
- os: osx
language: objective-c
osx_image: xcode9
osx_image: xcode9.2
script:
- set -o pipefail
- xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release ENABLE_TESTABILITY=YES | xcpretty -c
- xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release -sdk iphonesimulator -destination "name=iPhone 6s" ENABLE_TESTABILITY=YES | xcpretty -c
- xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release -sdk appletvsimulator -destination "name=Apple TV 1080p" ENABLE_TESTABILITY=YES | xcpretty -c
- xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release -sdk appletvsimulator -destination "name=Apple TV" ENABLE_TESTABILITY=YES | xcpretty -c
after_success:
- bash <(curl -s https://codecov.io/bash)
- os: osx
language: objective-c
osx_image: xcode9.3
script:
- set -o pipefail
- xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release ENABLE_TESTABILITY=YES | xcpretty -c
- xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release -sdk iphonesimulator -destination "name=iPhone 6s" ENABLE_TESTABILITY=YES | xcpretty -c
- xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release -sdk appletvsimulator -destination "name=Apple TV" ENABLE_TESTABILITY=YES | xcpretty -c
after_success:
- bash <(curl -s https://codecov.io/bash)
- os: osx
language: generic
osx_image: xcode9.2
script:
- swift build
- swift test
- os: osx
language: generic
osx_image: xcode9
osx_image: xcode9.3
script:
- swift build
- swift test
Expand Down

0 comments on commit 51b54c9

Please sign in to comment.