File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -310,6 +310,11 @@ jobs:
310
310
run_tests: true
311
311
objc: false
312
312
swift: true
313
+ setup_command: |
314
+ mkdir -p quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics
315
+ # Set the deployed pod location of run and upload-symbols with the development pod version.
316
+ cp Crashlytics/run quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/
317
+ cp Crashlytics/upload-symbols quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/
313
318
- product: ABTesting
314
319
plist_src_path: scripts/gha-encrypted/qs-abtesting.plist.gpg
315
320
plist_dst_path: quickstart-ios/abtesting/GoogleService-Info.plist
@@ -337,13 +342,9 @@ jobs:
337
342
prerelease_testing
338
343
- name: Install Secret GoogleService-Info.plist
339
344
run: scripts/decrypt_gha_secret.sh ${{ matrix.plist_src_path }} ${{ matrix.plist_dst_path }} "$plist_secret"
340
- - name: Setup
341
- if: matrix.product == "Crashlytics"
342
- run: |
343
- mkdir -p quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics
344
- # Set the deployed pod location of run and upload-symbols with the development pod version.
345
- cp Crashlytics/run quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/
346
- cp Crashlytics/upload-symbols quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/
345
+ - name: Run setup command, if needed.
346
+ if: matrix.setup_command != ''
347
+ run: ${{ matrix.setup_command }}
347
348
- name: Test Swift quickstart
348
349
if: matrix.swift == true
349
350
run: |
You can’t perform that action at this time.
0 commit comments