Skip to content

Commit c9365b8

Browse files
committedAug 27, 2020
Updated default iOS & tvos versions in scripts.
1 parent 267530a commit c9365b8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎scripts/all-tests.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/bin/sh
22

33
if [ "$1" == "iOS" ]; then
4-
set -o pipefail && xcodebuild test -verbose -scheme "RxBluetoothKit iOS" -destination "platform=iOS Simulator,OS=11.3,name=iPhone 8" ONLY_ACTIVE_ARCH=NO | xcpretty
4+
set -o pipefail && xcodebuild test -verbose -scheme "RxBluetoothKit iOS" -destination "platform=iOS Simulator,OS=13.6,name=iPhone 8" ONLY_ACTIVE_ARCH=NO | xcpretty
55
elif [ "$1" == "macOS" ]; then
66
set -o pipefail && xcodebuild test -verbose -scheme "RxBluetoothKit macOS" ONLY_ACTIVE_ARCH=NO | xcpretty
77
elif [ "$1" == "tvOS" ]; then
8-
set -o pipefail && xcodebuild test -verbose -scheme "RxBluetoothKit tvOS" -destination "platform=tvOS Simulator,OS=11.0,name=Apple TV 4K" ONLY_ACTIVE_ARCH=NO | xcpretty
8+
set -o pipefail && xcodebuild test -verbose -scheme "RxBluetoothKit tvOS" -destination "platform=tvOS Simulator,OS=13.4,name=Apple TV 4K" ONLY_ACTIVE_ARCH=NO | xcpretty
99
elif [ "$1" == "watchOS" ]; then
1010
echo "watchOS Unit Testing not yet available"
1111
exit 0

‎scripts/generate-mocks.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ fi
2727
IOS_VERSION="$1"
2828

2929
if [ -z "$IOS_VERSION" ]; then
30-
echo "Please specify ios version to compile (default 12.2):"
30+
echo "Please specify ios version to compile (default 13.6):"
3131
read IOS_VERSION
3232
if [ -z "$IOS_VERSION" ]; then
33-
IOS_VERSION="12.2"
33+
IOS_VERSION="13.6"
3434
fi
3535
fi
3636

0 commit comments

Comments
 (0)
Please sign in to comment.