@@ -444,57 +444,55 @@ jobs:
444
444
name : quickstart_artifacts_dynamiclinks
445
445
path : quickstart-ios/
446
446
447
- quickstart_framework_firestore :
448
- # Don't run on private repo.
449
- if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
450
- needs : package-head
451
- env :
452
- plist_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
453
- signin_secret : ${{ secrets.GHASecretsGPGPassphrase1 }}
454
- SDK : " Firestore"
455
- strategy :
456
- matrix :
457
- os : [macos-13]
458
- xcode : [Xcode_15.2]
459
- # TODO: Building FirebaseUI fails on Xcode 15 because it needs to sign the resources.
460
- # - os: macos-13
461
- # xcode: Xcode_15.2
462
- runs-on : ${{ matrix.os }}
463
- steps :
464
- - uses : actions/checkout@v4
465
- - name : Get framework dir
466
- uses : actions/download-artifact@v4
467
- with :
468
- name : Firebase-actions-dir
469
- - uses : ruby/setup-ruby@v1
470
- - name : Setup Bundler
471
- run : ./scripts/setup_bundler.sh
472
- - name : Move frameworks
473
- run : |
474
- mkdir -p "${HOME}"/ios_frameworks/
475
- find "${GITHUB_WORKSPACE}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
476
- - uses : actions/checkout@v4
477
- - name : Setup quickstart
478
- run : SAMPLE="$SDK" TARGET="${SDK}Example" NON_FIREBASE_SDKS="SDWebImage FirebaseAuthUI FirebaseEmailAuthUI" scripts/setup_quickstart_framework.sh \
479
- " ${HOME}" /ios_frameworks/Firebase/NonFirebaseSDKs/* \
480
- " ${HOME}" /ios_frameworks/Firebase/FirebaseFirestore/* \
481
- " ${HOME}" /ios_frameworks/Firebase/FirebaseAuth/* \
482
- " ${HOME}" /ios_frameworks/Firebase/FirebaseAnalytics/*
483
- - name : Xcode
484
- run : sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
485
- - name : Install Secret GoogleService-Info.plist
486
- run : scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-firestore.plist.gpg \
487
- quickstart-ios/firestore/GoogleService-Info.plist "$plist_secret"
488
- - name : Test Quickstart
489
- run : ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
490
- - name : Remove data before upload
491
- if : ${{ failure() }}
492
- run : scripts/remove_data.sh firestore
493
- - uses : actions/upload-artifact@v4
494
- if : ${{ failure() }}
495
- with :
496
- name : quickstart_artifacts_firestore
497
- path : quickstart-ios/
447
+ # quickstart_framework_firestore:
448
+ # # Don't run on private repo.
449
+ # if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
450
+ # needs: package-head
451
+ # env:
452
+ # plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
453
+ # signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
454
+ # SDK: "Firestore"
455
+ # strategy:
456
+ # matrix:
457
+ # # TODO: Building FirebaseUI fails on Xcode 15 because it needs to sign the resources.
458
+ # os: [macos-13]
459
+ # xcode: [Xcode_15.2]
460
+ # runs-on: ${{ matrix.os }}
461
+ # steps:
462
+ # - uses: actions/checkout@v4
463
+ # - name: Get framework dir
464
+ # uses: actions/download-artifact@v4
465
+ # with:
466
+ # name: Firebase-actions-dir
467
+ # - uses: ruby/setup-ruby@v1
468
+ # - name: Setup Bundler
469
+ # run: ./scripts/setup_bundler.sh
470
+ # - name: Move frameworks
471
+ # run: |
472
+ # mkdir -p "${HOME}"/ios_frameworks/
473
+ # find "${GITHUB_WORKSPACE}" -name "Firebase*latest.zip" -exec unzip -d "${HOME}"/ios_frameworks/ {} +
474
+ # - uses: actions/checkout@v4
475
+ # - name: Setup quickstart
476
+ # run: SAMPLE="$SDK" TARGET="${SDK}Example" NON_FIREBASE_SDKS="SDWebImage FirebaseAuthUI FirebaseEmailAuthUI" scripts/setup_quickstart_framework.sh \
477
+ # "${HOME}"/ios_frameworks/Firebase/NonFirebaseSDKs/* \
478
+ # "${HOME}"/ios_frameworks/Firebase/FirebaseFirestore/* \
479
+ # "${HOME}"/ios_frameworks/Firebase/FirebaseAuth/* \
480
+ # "${HOME}"/ios_frameworks/Firebase/FirebaseAnalytics/*
481
+ # - name: Xcode
482
+ # run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
483
+ # - name: Install Secret GoogleService-Info.plist
484
+ # run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-firestore.plist.gpg \
485
+ # quickstart-ios/firestore/GoogleService-Info.plist "$plist_secret"
486
+ # - name: Test Quickstart
487
+ # run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart_framework.sh "${SDK}")
488
+ # - name: Remove data before upload
489
+ # if: ${{ failure() }}
490
+ # run: scripts/remove_data.sh firestore
491
+ # - uses: actions/upload-artifact@v4
492
+ # if: ${{ failure() }}
493
+ # with:
494
+ # name: quickstart_artifacts_firestore
495
+ # path: quickstart-ios/
498
496
499
497
check_framework_firestore_symbols :
500
498
# Don't run on private repo.
0 commit comments