Skip to content

Commit

Permalink
Updated Xcode version to use.
Browse files Browse the repository at this point in the history
Signed-off-by: bobgodwinx <[email protected]>
  • Loading branch information
bobgodwinx committed Mar 29, 2020
1 parent 9a93511 commit 9b7366f
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
XCODE_TEST_REPORTS: /tmp/xcode-test-results
LANG: en_US.UTF-8
macos:
xcode: '10.2.0'
xcode: '11.4.0'
steps:
- checkout
- run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS $XCODE_TEST_REPORTS
Expand All @@ -26,58 +26,58 @@ jobs:
paths:
- Carthage
- run:
name: Run Tests (Swift 5.1)
name: Run Tests (Swift 5.2)
command: >
set -o pipefail && xcodebuild test SWIFT_VERSION=5.1
set -o pipefail && xcodebuild test SWIFT_VERSION=5.2
-workspace RxCoreLocation.xcworkspace
-scheme 'RxCoreLocation-iOS' -sdk iphonesimulator
-destination "name=iPhone X" | xcpretty -c --test
-destination "name=iPhone 11" | xcpretty -c --test
- run:
name: Run Tests (Swift 5.0)
name: Run Tests (Swift 5.1)
command: >
set -o pipefail && xcodebuild test SWIFT_VERSION=5.0
set -o pipefail && xcodebuild test SWIFT_VERSION=5.1
-workspace RxCoreLocation.xcworkspace
-scheme 'RxCoreLocation-iOS' -sdk iphonesimulator
-destination "name=iPhone X" | xcpretty -c --test
-destination "name=iPhone 11" | xcpretty -c --test
- run:
name: Build watchOS (Swift 5.1)
name: Build watchOS (Swift 5.2)
command: >
set -o pipefail && xcodebuild build SWIFT_VERSION=5.1
set -o pipefail && xcodebuild build SWIFT_VERSION=5.2
-workspace RxCoreLocation.xcworkspace
-scheme RxCoreLocation-watchOS -sdk watchsimulator
-destination "name=Apple Watch Series 2 - 42mm" | xcpretty -c
-destination "name=Apple Watch Series 5 - 44mm" | xcpretty -c
- run:
name: Build watchOS (Swift 5.0)
name: Build watchOS (Swift 5.1)
command: >
set -o pipefail && xcodebuild build SWIFT_VERSION=5.0
set -o pipefail && xcodebuild build SWIFT_VERSION=5.1
-workspace RxCoreLocation.xcworkspace
-scheme RxCoreLocation-watchOS -sdk watchsimulator
-destination "name=Apple Watch Series 2 - 42mm" | xcpretty -c
-destination "name=Apple Watch Series 5 - 44mm" | xcpretty -c
- run:
name: Build macOS (Swift 5.1)
name: Build macOS (Swift 5.2)
command: >
set -o pipefail && xcodebuild build SWIFT_VERSION=5.1
set -o pipefail && xcodebuild build SWIFT_VERSION=5.2
-workspace RxCoreLocation.xcworkspace
-scheme RxCoreLocation-macOS -sdk macosx
-destination "arch=x86_64" | xcpretty -c
- run:
name: Build macOS (Swift 5.0)
name: Build macOS (Swift 5.1)
command: >
set -o pipefail && xcodebuild build SWIFT_VERSION=5.0
set -o pipefail && xcodebuild build SWIFT_VERSION=5.1
-workspace RxCoreLocation.xcworkspace
-scheme RxCoreLocation-macOS -sdk macosx
-destination "arch=x86_64" | xcpretty -c
- run:
name: Build tvOS (Swift 5.1)
name: Build tvOS (Swift 5.2)
command: >
set -o pipefail && xcodebuild build SWIFT_VERSION=5.1
set -o pipefail && xcodebuild build SWIFT_VERSION=5.2
-workspace RxCoreLocation.xcworkspace
-scheme RxCoreLocation-tvOS -sdk appletvsimulator
-destination "name=Apple TV 4K (at 1080p)" | xcpretty -c
- run:
name: Build tvOS (Swift 5.0)
name: Build tvOS (Swift 5.1)
command: >
set -o pipefail && xcodebuild build SWIFT_VERSION=5.0
set -o pipefail && xcodebuild build SWIFT_VERSION=5.1
-workspace RxCoreLocation.xcworkspace
-scheme RxCoreLocation-tvOS -sdk appletvsimulator
-destination "name=Apple TV 4K (at 1080p)" | xcpretty -c
Expand Down

0 comments on commit 9b7366f

Please sign in to comment.