aboutsummaryrefslogtreecommitdiffhomepage
path: root/test.sh
diff options
context:
space:
mode:
authorGravatar Ibrahim Ulukaya <ulukaya@gmail.com>2017-09-10 14:57:56 -0400
committerGravatar GitHub <noreply@github.com>2017-09-10 14:57:56 -0400
commite8cf906d21501513f53666a34d4c4eb3e95bef6e (patch)
treeea20975f898c4d1f78c594fc7820bab0c572d547 /test.sh
parent187c762137474370991116d2438037ceb22798b8 (diff)
update travis script (#136)
* update travis script * update travis script * update bundles
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh9
1 files changed, 1 insertions, 8 deletions
diff --git a/test.sh b/test.sh
index 9bb099d..370a6b7 100755
--- a/test.sh
+++ b/test.sh
@@ -18,7 +18,7 @@ test_iOS() {
-workspace Example/Firebase.xcworkspace \
-scheme AllUnitTests_iOS \
-sdk iphonesimulator \
- -destination 'platform=iOS Simulator,name=iPhone 7' \
+ -destination 'platform=iOS Simulator,OS=10.3.1,name=iPhone 7' \
build \
test \
ONLY_ACTIVE_ARCH=YES \
@@ -41,13 +41,6 @@ test_macOS() {
test_iOS; RESULT=$?
-if [ $RESULT == 65 ]; then
- echo "xcodebuild exited with 65, retrying"
- sleep 5
-
- test_iOS; RESULT=$?
-fi
-
if [ $RESULT != 0 ]; then exit $RESULT; fi
test_macOS; RESULT=$?