Skip to content

Commit d17f052

Browse files
committed
don't build objc sample in test script
1 parent 64fe7e3 commit d17f052

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

test.sh

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,20 @@ EXIT_STATUS=0
1515
CODE_SIGNING_REQUIRED=NO \
1616
| xcpretty) || EXIT_STATUS=$?
1717

18-
cd samples/objc || EXIT_STATUS=$?
19-
pod install || EXIT_STATUS=$?
18+
# It'd be nice to test building the objc sample as a simple
19+
# integration test, but we don't have a GoogleService-Info.plist file
20+
# on Travis.
21+
# cd samples/objc
22+
# pod install
2023

21-
(xcodebuild \
22-
-workspace FirebaseUI-demo-objc.xcworkspace \
23-
-scheme FirebaseUI-demo-objc \
24-
-sdk iphonesimulator \
25-
-destination 'platform=iOS Simulator,name=iPhone 7' \
26-
build \
27-
ONLY_ACTIVE_ARCH=YES \
28-
CODE_SIGNING_REQUIRED=NO \
29-
| xcpretty) || EXIT_STATUS=$?
24+
# (xcodebuild \
25+
# -workspace FirebaseUI-demo-objc.xcworkspace \
26+
# -scheme FirebaseUI-demo-objc \
27+
# -sdk iphonesimulator \
28+
# -destination 'platform=iOS Simulator,name=iPhone 7' \
29+
# build \
30+
# ONLY_ACTIVE_ARCH=YES \
31+
# CODE_SIGNING_REQUIRED=NO \
32+
# | xcpretty) || EXIT_STATUS=$?
3033

3134
exit $EXIT_STATUS

0 commit comments

Comments
 (0)