-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathbuild.sh
executable file
·746 lines (640 loc) · 19.6 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
#!/usr/bin/env bash
# Copyright 2018 Google
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# USAGE: build.sh product [platform] [method]
#
# Builds the given product for the given platform using the given build method
function pod_gen() {
# Call pod gen with a podspec and additional optional arguments.
bundle exec pod gen --local-sources=./ --sources=https://github.com/firebase/SpecsDev.git,https://github.com/firebase/SpecsStaging.git,https://cdn.cocoapods.org/ "$@"
}
set -euo pipefail
if [[ $# -lt 1 ]]; then
cat 1>&2 <<EOF
USAGE: $0 product [platform] [method]
product can be one of:
Firebase
Firestore
CombineSwift
InAppMessaging
Messaging
MessagingSample
SwiftUISample
MLModelDownloaderSample
RemoteConfig
RemoteConfigSample
Sessions
Storage
SymbolCollision
GoogleDataTransport
Performance
ClientApp
platform can be one of:
iOS (default)
iOS-device
macOS
tvOS
watchOS
catalyst
visionOS
method can be one of:
xcodebuild (default)
cmake
unit
integration
spm
Optionally, reads the environment variable SANITIZERS. If set, it is expected to
be a string containing a space-separated list with some of the following
elements:
asan
tsan
ubsan
EOF
exit 1
fi
product="$1"
platform="iOS"
if [[ $# -gt 1 ]]; then
platform="$2"
fi
method="xcodebuild"
if [[ $# -gt 2 ]]; then
method="$3"
fi
echo "Building $product for $platform using $method"
if [[ -n "${SANITIZERS:-}" ]]; then
echo "Using sanitizers: $SANITIZERS"
fi
scripts_dir=$(dirname "${BASH_SOURCE[0]}")
firestore_emulator="${scripts_dir}/run_firestore_emulator.sh"
database_emulator="${scripts_dir}/run_database_emulator.sh"
system=$(uname -s)
case "$system" in
Darwin)
xcode_version=$(xcodebuild -version | grep Xcode)
xcode_version="${xcode_version/Xcode /}"
xcode_major="${xcode_version/.*/}"
;;
*)
xcode_major="0"
;;
esac
# Source function to check if CI secrets are available.
source scripts/check_secrets.sh
# Runs xcodebuild with the given flags, piping output to xcbeautify
# If xcodebuild fails with known error codes, retries once.
function RunXcodebuild() {
echo xcodebuild "$@"
xcbeautify_cmd=(xcbeautify --renderer github-actions --disable-logging)
result=0
xcodebuild "$@" | tee xcodebuild.log | "${xcbeautify_cmd[@]}" \
&& CheckUnexpectedFailures xcodebuild.log \
|| result=$?
if [[ $result == 65 ]]; then
ExportLogs "$@"
echo "xcodebuild exited with 65, retrying" 1>&2
sleep 5
result=0
xcodebuild "$@" | tee xcodebuild.log | "${xcbeautify_cmd[@]}" \
&& CheckUnexpectedFailures xcodebuild.log \
|| result=$?
fi
if [[ $result != 0 ]]; then
echo "xcodebuild exited with $result" 1>&2
ExportLogs "$@"
return $result
fi
}
# Exports any logs output captured in the xcresult
function ExportLogs() {
python "${scripts_dir}/xcresult_logs.py" "$@"
}
function CheckUnexpectedFailures() {
local log_file=$1
if grep -Eq "[1-9]\d* failures \([1-9]\d* unexpected\)" "$log_file"; then
echo "xcodebuild failed with unexpected failures." 1>&2
return 65
fi
}
if [[ "$xcode_major" -lt 15 ]]; then
ios_flags=(
-sdk 'iphonesimulator'
-destination 'platform=iOS Simulator,name=iPhone 14'
)
watchos_flags=(
-sdk 'watchsimulator'
-destination 'platform=watchOS Simulator,name=Apple Watch Series 7 (45mm)'
)
elif [[ "$xcode_major" -lt 16 ]]; then
ios_flags=(
-sdk 'iphonesimulator'
-destination 'platform=iOS Simulator,name=iPhone 15'
)
watchos_flags=(
-sdk 'watchsimulator'
-destination 'platform=watchOS Simulator,name=Apple Watch Series 7 (45mm)'
)
else
ios_flags=(
-sdk 'iphonesimulator'
-destination 'platform=iOS Simulator,name=iPhone 16'
)
watchos_flags=(
-sdk 'watchsimulator'
-destination 'platform=watchOS Simulator,name=Apple Watch Series 10 (42mm)'
)
fi
ios_device_flags=(
-sdk 'iphoneos'
-destination 'generic/platform=iOS'
)
ipad_flags=(
-sdk 'iphonesimulator'
-destination 'platform=iOS Simulator,name=iPad Pro (9.7-inch)'
)
macos_flags=(
-sdk 'macosx'
-destination 'platform=OS X,arch=x86_64'
)
tvos_flags=(
-sdk "appletvsimulator"
-destination 'platform=tvOS Simulator,name=Apple TV'
)
visionos_flags=(
-sdk 'xrsimulator'
-destination 'platform=visionOS Simulator,name=Apple Vision Pro'
)
catalyst_flags=(
ARCHS=x86_64 VALID_ARCHS=x86_64 SUPPORTS_MACCATALYST=YES -sdk macosx
-destination platform="macOS,variant=Mac Catalyst,arch=x86_64" TARGETED_DEVICE_FAMILY=2
CODE_SIGN_IDENTITY=- CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
)
# Compute standard flags for all platforms
case "$platform" in
iOS)
xcb_flags=("${ios_flags[@]}")
gen_platform=ios
;;
iOS-device)
xcb_flags=("${ios_device_flags[@]}")
gen_platform=ios
;;
iPad)
xcb_flags=("${ipad_flags[@]}")
;;
macOS)
xcb_flags=("${macos_flags[@]}")
gen_platform=macos
;;
tvOS)
xcb_flags=("${tvos_flags[@]}")
gen_platform=tvos
;;
watchOS)
xcb_flags=("${watchos_flags[@]}")
;;
visionOS)
xcb_flags=("${visionos_flags[@]}")
;;
catalyst)
xcb_flags=("${catalyst_flags[@]}")
;;
all)
xcb_flags=()
;;
Linux)
xcb_flags=()
;;
*)
echo "Unknown platform '$platform'" 1>&2
exit 1
;;
esac
xcb_flags+=(
ONLY_ACTIVE_ARCH=YES
CODE_SIGNING_REQUIRED=NO
CODE_SIGNING_ALLOWED=YES
COMPILER_INDEX_STORE_ENABLE=NO
)
source scripts/buildcache.sh
xcb_flags=("${xcb_flags[@]}" "${buildcache_xcb_flags[@]}")
# TODO(varconst): Add --warn-unused-vars and --warn-uninitialized.
# Right now, it makes the log overflow on Travis because many of our
# dependencies don't build cleanly this way.
cmake_options=(
-Wdeprecated
-DCMAKE_BUILD_TYPE=Debug
)
if [[ -n "${SANITIZERS:-}" ]]; then
for sanitizer in $SANITIZERS; do
case "$sanitizer" in
asan)
xcb_flags+=(
-enableAddressSanitizer YES
)
cmake_options+=(
-DWITH_ASAN=ON
)
;;
tsan)
xcb_flags+=(
-enableThreadSanitizer YES
)
cmake_options+=(
-DWITH_TSAN=ON
)
;;
ubsan)
xcb_flags+=(
-enableUndefinedBehaviorSanitizer YES
)
cmake_options+=(
-DWITH_UBSAN=ON
)
;;
*)
echo "Unknown sanitizer '$sanitizer'" 1>&2
exit 1
;;
esac
done
fi
case "$product-$platform-$method" in
FirebasePod-iOS-*)
RunXcodebuild \
-workspace 'CoreOnly/Tests/FirebasePodTest/FirebasePodTest.xcworkspace' \
-scheme "FirebasePodTest" \
"${xcb_flags[@]}" \
build
;;
Auth-*-*)
if check_secrets; then
RunXcodebuild \
-project 'FirebaseAuth/Tests/SampleSwift/AuthenticationExample.xcodeproj' \
-scheme "$method" \
"${xcb_flags[@]}" \
test
fi
;;
CombineSwift-*-xcodebuild)
pod_gen FirebaseCombineSwift.podspec --platforms=ios
RunXcodebuild \
-workspace 'gen/FirebaseCombineSwift/FirebaseCombineSwift.xcworkspace' \
-scheme "FirebaseCombineSwift-Unit-unit" \
"${xcb_flags[@]}" \
build \
test
;;
InAppMessaging-*-xcodebuild)
RunXcodebuild \
-workspace 'FirebaseInAppMessaging/Tests/Integration/DefaultUITestApp/InAppMessagingDisplay-Sample.xcworkspace' \
-scheme 'FiamDisplaySwiftExample' \
"${xcb_flags[@]}" \
test
;;
Firestore-*-xcodebuild)
"${firestore_emulator}" start
trap '"${firestore_emulator}" stop' ERR EXIT
RunXcodebuild \
-workspace 'Firestore/Example/Firestore.xcworkspace' \
-scheme "Firestore_IntegrationTests_$platform" \
-enableCodeCoverage YES \
"${xcb_flags[@]}" \
test
;;
Firestore-macOS-cmake | Firestore-Linux-cmake)
"${firestore_emulator}" start
trap '"${firestore_emulator}" stop' ERR EXIT
(
test -d build || mkdir build
cd build
echo "Preparing cmake build ..."
cmake -G Ninja "${cmake_options[@]}" ..
echo "Building cmake build ..."
ninja -k 10 all
ctest --verbose
)
;;
SymbolCollision-*-*)
RunXcodebuild \
-workspace 'SymbolCollisionTest/SymbolCollisionTest.xcworkspace' \
-scheme "SymbolCollisionTest" \
"${xcb_flags[@]}" \
build
;;
# TODO(#12205) Restore this test to "test" instead of "build"
Messaging-*-xcodebuild)
pod_gen FirebaseMessaging.podspec --platforms=ios
# Add GoogleService-Info.plist to generated Test Wrapper App.
ruby ./scripts/update_xcode_target.rb gen/FirebaseMessaging/Pods/Pods.xcodeproj \
AppHost-FirebaseMessaging-Unit-Tests \
../../../FirebaseMessaging/Tests/IntegrationTests/Resources/GoogleService-Info.plist
if check_secrets; then
# Integration tests are only run on iOS to minimize flake failures.
RunXcodebuild \
-workspace 'gen/FirebaseMessaging/FirebaseMessaging.xcworkspace' \
-scheme "FirebaseMessaging-Unit-integration" \
"${ios_flags[@]}" \
"${xcb_flags[@]}" \
build
fi
;;
MessagingSample-*-*)
if check_secrets; then
RunXcodebuild \
-workspace 'FirebaseMessaging/Apps/Sample/Sample.xcworkspace' \
-scheme "Sample" \
"${xcb_flags[@]}" \
build
fi
;;
SwiftUISample-*-*)
if check_secrets; then
RunXcodebuild \
-workspace 'FirebaseMessaging/Apps/SwiftUISample/SwiftUISample.xcworkspace' \
-scheme "SwiftUISample" \
"${xcb_flags[@]}" \
build
fi
;;
# TODO: This is actually building for iOS instead of watchOS. Update to use
# watchOS xcb_flags along with the watchOS sdk option. Also nanopb and promises
# podspecs need minimum version updates.
MessagingSampleStandaloneWatchApp-*-*)
if check_secrets; then
RunXcodebuild \
-workspace 'FirebaseMessaging/Apps/SampleStandaloneWatchApp/SampleStandaloneWatchApp.xcworkspace' \
-scheme "SampleStandaloneWatchApp Watch App" \
-destination 'platform=watchOS Simulator,name=Apple Watch Series 10 (42mm)' \
build
fi
;;
MLModelDownloaderSample-*-*)
if check_secrets; then
RunXcodebuild \
-workspace 'FirebaseMLModelDownloader/Apps/Sample/MLDownloaderTestApp.xcworkspace' \
-scheme "MLDownloaderTestApp" \
"${xcb_flags[@]}" \
build
fi
;;
WatchOSSample-*-*)
RunXcodebuild \
-workspace 'Example/watchOSSample/SampleWatchApp.xcworkspace' \
-scheme "SampleWatchAppWatchKitApp" \
"${xcb_flags[@]}" \
build
;;
Database-*-integration)
"${database_emulator}" start
trap '"${database_emulator}" stop' ERR EXIT
pod_gen FirebaseDatabase.podspec --platforms="${gen_platform}"
RunXcodebuild \
-workspace 'gen/FirebaseDatabase/FirebaseDatabase.xcworkspace' \
-scheme "FirebaseDatabase-Unit-integration" \
"${xcb_flags[@]}" \
build \
test
;;
RemoteConfig-*-fakeconsole)
pod_gen FirebaseRemoteConfig.podspec --platforms="${gen_platform}"
RunXcodebuild \
-workspace 'gen/FirebaseRemoteConfig/FirebaseRemoteConfig.xcworkspace' \
-scheme "FirebaseRemoteConfig-Unit-fake-console-tests" \
"${xcb_flags[@]}" \
build \
test
;;
RemoteConfig-*-integration)
pod_gen FirebaseRemoteConfig.podspec --platforms="${gen_platform}"
# Add GoogleService-Info.plist to generated Test Wrapper App.
ruby ./scripts/update_xcode_target.rb gen/FirebaseRemoteConfig/Pods/Pods.xcodeproj \
AppHost-FirebaseRemoteConfig-Unit-Tests \
../../../FirebaseRemoteConfig/Tests/Swift/SwiftAPI/GoogleService-Info.plist
# Add AccessToken to generated Test Wrapper App.
ruby ./scripts/update_xcode_target.rb gen/FirebaseRemoteConfig/Pods/Pods.xcodeproj \
AppHost-FirebaseRemoteConfig-Unit-Tests \
../../../FirebaseRemoteConfig/Tests/Swift/AccessToken.json
RunXcodebuild \
-workspace 'gen/FirebaseRemoteConfig/FirebaseRemoteConfig.xcworkspace' \
-scheme "FirebaseRemoteConfig-Unit-swift-api-tests" \
"${xcb_flags[@]}" \
build \
test
;;
RemoteConfigSample-*-*)
RunXcodebuild \
-workspace 'FirebaseRemoteConfig/Tests/Sample/RemoteConfigSampleApp.xcworkspace' \
-scheme "RemoteConfigSampleApp" \
"${xcb_flags[@]}" \
build
;;
VertexIntegration-*-*)
RunXcodebuild \
-project 'FirebaseVertexAI/Tests/TestApp/VertexAITestApp.xcodeproj' \
-scheme "VertexAITestApp-SPM" \
"${xcb_flags[@]}" \
-parallel-testing-enabled NO \
build \
test
;;
Sessions-*-integration)
# Perform "pod install" to install the relevant dependencies
# ./FirebaseSessions/generate_testapp.sh
pod_gen FirebaseSessions.podspec --platforms=ios --clean
cd FirebaseSessions/Tests/TestApp; pod install; cd -
# Run E2E Integration Tests for Prod.
RunXcodebuild \
-workspace 'FirebaseSessions/Tests/TestApp/AppQualityDevApp.xcworkspace' \
-scheme "AppQualityDevApp_iOS" \
"${ios_flags[@]}" \
"${xcb_flags[@]}" \
build \
test
# Run E2E Integration Tests for Staging.
RunXcodebuild \
-workspace 'FirebaseSessions/Tests/TestApp/AppQualityDevApp.xcworkspace' \
-scheme "AppQualityDevApp_iOS" \
FirebaseSessionsRunEnvironment=STAGING \
"${ios_flags[@]}" \
"${xcb_flags[@]}" \
build \
test
# Run E2E Integration Tests for Autopush.
RunXcodebuild \
-workspace 'FirebaseSessions/Tests/TestApp/AppQualityDevApp.xcworkspace' \
-scheme "AppQualityDevApp_iOS" \
FirebaseSessionsRunEnvironment=AUTOPUSH \
"${ios_flags[@]}" \
"${xcb_flags[@]}" \
build \
test
;;
StorageSwift-*-xcodebuild)
pod_gen FirebaseStorage.podspec --platforms=ios
# Add GoogleService-Info.plist to generated Test Wrapper App.
ruby ./scripts/update_xcode_target.rb gen/FirebaseStorage/Pods/Pods.xcodeproj \
AppHost-FirebaseStorage-Unit-Tests \
../../../FirebaseStorage/Tests/Integration/Resources/GoogleService-Info.plist
if check_secrets; then
# Integration tests are only run on iOS to minimize flake failures.
RunXcodebuild \
-workspace 'gen/FirebaseStorage/FirebaseStorage.xcworkspace' \
-scheme "FirebaseStorage-Unit-integration" \
"${ios_flags[@]}" \
"${xcb_flags[@]}" \
test
fi
;;
StorageObjC-*-xcodebuild)
pod_gen FirebaseStorage.podspec --platforms=ios
# Add GoogleService-Info.plist to generated Test Wrapper App.
ruby ./scripts/update_xcode_target.rb gen/FirebaseStorage/Pods/Pods.xcodeproj \
AppHost-FirebaseStorage-Unit-Tests \
../../../FirebaseStorage/Tests/Integration/Resources/GoogleService-Info.plist
if check_secrets; then
# Integration tests are only run on iOS to minimize flake failures.
RunXcodebuild \
-workspace 'gen/FirebaseStorage/FirebaseStorage.xcworkspace' \
-scheme "FirebaseStorage-Unit-ObjCIntegration" \
"${ios_flags[@]}" \
"${xcb_flags[@]}" \
test
fi
;;
StorageCombine-*-xcodebuild)
pod_gen FirebaseCombineSwift.podspec --platforms=ios
# Add GoogleService-Info.plist to generated Test Wrapper App.
ruby ./scripts/update_xcode_target.rb gen/FirebaseCombineSwift/Pods/Pods.xcodeproj \
AppHost-FirebaseCombineSwift-Unit-Tests \
../../../FirebaseStorage/Tests/Integration/Resources/GoogleService-Info.plist
if check_secrets; then
# Integration tests are only run on iOS to minimize flake failures.
RunXcodebuild \
-workspace 'gen/FirebaseCombineSwift/FirebaseCombineSwift.xcworkspace' \
-scheme "FirebaseCombineSwift-Unit-integration" \
"${ios_flags[@]}" \
"${xcb_flags[@]}" \
test
fi
;;
GoogleDataTransport-watchOS-xcodebuild)
RunXcodebuild \
-workspace 'GoogleDataTransport/GDTWatchOSTestApp/GDTWatchOSTestApp.xcworkspace' \
-scheme "GDTWatchOSTestAppWatchKitApp" \
"${xcb_flags[@]}" \
build
RunXcodebuild \
-workspace 'GoogleDataTransport/GDTCCTWatchOSTestApp/GDTCCTWatchOSTestApp.xcworkspace' \
-scheme "GDTCCTWatchOSIndependentTestAppWatchKitApp" \
"${xcb_flags[@]}" \
build
RunXcodebuild \
-workspace 'GoogleDataTransport/GDTCCTWatchOSTestApp/GDTCCTWatchOSTestApp.xcworkspace' \
-scheme "GDTCCTWatchOSCompanionTestApp" \
"${xcb_flags[@]}" \
build
;;
Performance-*-unit)
# Run unit tests on prod environment with unswizzle capabilities.
export FPR_UNSWIZZLE_AVAILABLE="1"
export FPR_AUTOPUSH_ENV="0"
pod_gen FirebasePerformance.podspec --platforms="${gen_platform}"
RunXcodebuild \
-workspace 'gen/FirebasePerformance/FirebasePerformance.xcworkspace' \
-scheme "FirebasePerformance-Unit-unit" \
"${xcb_flags[@]}" \
build \
test
;;
Performance-*-proddev)
# Build the prod dev test app.
export FPR_UNSWIZZLE_AVAILABLE="0"
export FPR_AUTOPUSH_ENV="0"
pod_gen FirebasePerformance.podspec --platforms="${gen_platform}"
RunXcodebuild \
-workspace 'gen/FirebasePerformance/FirebasePerformance.xcworkspace' \
-scheme "FirebasePerformance-TestApp" \
"${xcb_flags[@]}" \
build
;;
Performance-*-integration)
# Generate the workspace for the SDK to generate Protobuf files.
export FPR_UNSWIZZLE_AVAILABLE="0"
pod_gen FirebasePerformance.podspec --platforms=ios --clean
# Perform "pod install" to install the relevant dependencies
cd FirebasePerformance/Tests/FIRPerfE2E; pod install; cd -
# Run E2E Integration Tests for Autopush.
RunXcodebuild \
-workspace 'FirebasePerformance/Tests/FIRPerfE2E/FIRPerfE2E.xcworkspace' \
-scheme "FIRPerfE2EAutopush" \
FPR_AUTOPUSH_ENV=1 \
"${ios_flags[@]}" \
"${xcb_flags[@]}" \
build \
test
# Run E2E Integration Tests for Prod.
RunXcodebuild \
-workspace 'FirebasePerformance/Tests/FIRPerfE2E/FIRPerfE2E.xcworkspace' \
-scheme "FIRPerfE2EProd" \
"${ios_flags[@]}" \
"${xcb_flags[@]}" \
build \
test
;;
FirebaseDataConnect-*-spm)
RunXcodebuild \
-scheme $product \
"${xcb_flags[@]}" \
IPHONEOS_DEPLOYMENT_TARGET=15.0 \
TVOS_DEPLOYMENT_TARGET=15.0 \
test
;;
# Note that the combine tests require setting the minimum iOS and tvOS version to 13.0
*-*-spm)
RunXcodebuild \
-scheme $product \
"${xcb_flags[@]}" \
IPHONEOS_DEPLOYMENT_TARGET=13.0 \
TVOS_DEPLOYMENT_TARGET=13.0 \
test
;;
*-*-spmbuildonly)
RunXcodebuild \
-scheme $product \
"${xcb_flags[@]}" \
build
;;
ClientApp-iOS-xcodebuild | ClientApp-iOS13-iOS-xcodebuild)
RunXcodebuild \
-project 'IntegrationTesting/ClientApp/ClientApp.xcodeproj' \
-scheme $product \
"${xcb_flags[@]}" \
build
;;
ClientApp-CocoaPods*-iOS-xcodebuild)
RunXcodebuild \
-workspace 'IntegrationTesting/ClientApp/ClientApp.xcworkspace' \
-scheme $product \
"${xcb_flags[@]}" \
build
;;
*)
echo "Don't know how to build this product-platform-method combination" 1>&2
echo " product=$product" 1>&2
echo " platform=$platform" 1>&2
echo " method=$method" 1>&2
exit 1
;;
esac