File tree Expand file tree Collapse file tree 1 file changed +20
-3
lines changed Expand file tree Collapse file tree 1 file changed +20
-3
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- set -o pipefail && xcodebuild \
3
+ EXIT_STATUS=0
4
+
5
+ (xcodebuild \
4
6
-workspace FirebaseUI.xcworkspace \
5
7
-scheme FirebaseUI \
6
8
-sdk iphonesimulator \
7
9
-destination ' platform=iOS Simulator,name=iPhone 7' \
8
10
build \
9
11
test \
10
12
ONLY_ACTIVE_ARCH=YES \
11
- CODE_SIGNING_REQUIRED=NO\
12
- | xcpretty
13
+ CODE_SIGNING_REQUIRED=NO \
14
+ | xcpretty) || EXIT_STATUS=$?
15
+
16
+ cd samples/objc;
17
+ pod install;
18
+
19
+ (xcodebuild \
20
+ -workspace FirebaseUI-demo-objc.xcworkspace \
21
+ -scheme FirebaseUI-demo-objc \
22
+ -sdk iphonesimulator \
23
+ -destination ' platform=iOS Simulator,name=iPhone 7' \
24
+ build \
25
+ ONLY_ACTIVE_ARCH=YES \
26
+ CODE_SIGNING_REQUIRED=NO \
27
+ | xcpretty) || EXIT_STATUS=$?
28
+
29
+ exit $EXIT_STATUS
You can’t perform that action at this time.
0 commit comments