Skip to content

Commit

Permalink
Configured circle.yml to use xcode 11.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bobgodwinx committed Jan 3, 2021
1 parent d068f6f commit 8b26b77
Showing 1 changed file with 1 addition and 32 deletions.
33 changes: 1 addition & 32 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: '12.3.0'
xcode: '11.4.0'
steps:
- checkout
- run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS $XCODE_TEST_REPORTS
Expand All @@ -18,9 +18,6 @@ jobs:
- v1-dep-{{ .Branch }}-
- v1-dep-master-
- v1-dep-
- run:
name: export XCODE_XCCONFIG_FILE
command: export XCODE_XCCONFIG_FILE=$PWD/tmp.xcconfig
- run:
name: Bootstrap Carthage
command: carthage update --no-use-binaries
Expand All @@ -35,55 +32,27 @@ jobs:
-workspace RxCoreLocation.xcworkspace
-scheme 'RxCoreLocation-iOS' -sdk iphonesimulator
-destination "name=iPhone 11" | xcpretty -c --test
- run:
name: Run Tests (Swift 5.3)
command: >
set -o pipefail && xcodebuild test SWIFT_VERSION=5.3
-workspace RxCoreLocation.xcworkspace
-scheme 'RxCoreLocation-iOS' -sdk iphonesimulator
-destination "name=iPhone 11" | xcpretty -c --test
- run:
name: Build watchOS (Swift 5.2)
command: >
set -o pipefail && xcodebuild build SWIFT_VERSION=5.2
-workspace RxCoreLocation.xcworkspace
-scheme RxCoreLocation-watchOS -sdk watchsimulator
-destination "name=Apple Watch Series 5 - 44mm" | xcpretty -c
- run:
name: Build watchOS (Swift 5.3)
command: >
set -o pipefail && xcodebuild build SWIFT_VERSION=5.3
-workspace RxCoreLocation.xcworkspace
-scheme RxCoreLocation-watchOS -sdk watchsimulator
-destination "name=Apple Watch Series 5 - 44mm" | xcpretty -c
- run:
name: Build macOS (Swift 5.2)
command: >
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.3)
command: >
set -o pipefail && xcodebuild build SWIFT_VERSION=5.3
-workspace RxCoreLocation.xcworkspace
-scheme RxCoreLocation-macOS -sdk macosx
-destination "arch=x86_64" | xcpretty -c
- run:
name: Build tvOS (Swift 5.2)
command: >
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.3)
command: >
set -o pipefail && xcodebuild build SWIFT_VERSION=5.3
-workspace RxCoreLocation.xcworkspace
-scheme RxCoreLocation-tvOS -sdk appletvsimulator
-destination "name=Apple TV 4K (at 1080p)" | xcpretty -c
- store_artifacts:
path: /tmp/xcode-test-results
workflows:
Expand Down

0 comments on commit 8b26b77

Please sign in to comment.