| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623 |
- # TODO(Swift 6): Re-enable these tests.
- # Copyright 2020 Google LLC
- #
- # 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.
- # name: firestore
- # on:
- # workflow_dispatch:
- # pull_request:
- # schedule:
- # # Run every day at 12am (PST) - cron uses UTC times
- # - cron: '0 8 * * *'
- # concurrency:
- # group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
- # cancel-in-progress: true
- # jobs:
- # changes:
- # runs-on: macos-15
- # # Only when this is not a scheduled run
- # if: github.event_name != 'schedule'
- # outputs:
- # changed: ${{ steps.firestore_src_changes.outputs.sources == 'true' || steps.related_changes.outputs.other_changes == 'true' }}
- # steps:
- # - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
- # id: firestore_src_changes
- # with:
- # predicate-quantifier: 'every'
- # filters: |
- # sources:
- # # Firestore sources
- # - 'Firestore/**'
- # - '!Firestore/**/*.md'
- # - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
- # id: related_changes
- # with:
- # filters: |
- # other_changes:
- # # Interop headers
- # - 'FirebaseAuth/Interop/*.h'
- # # FirebaseCore header change
- # - 'FirebaseCore/Internal'
- # - 'FirebaseCore/Sources/Public'
- # # Podspec
- # - 'FirebaseFirestoreInternal.podspec'
- # - 'FirebaseFirestore.podspec'
- # # Package.swift
- # - 'Package.swift'
- # # CMake
- # - '**CMakeLists.txt'
- # - 'cmake/**'
- # # Build scripts to which Firestore is sensitive
- # #
- # # Note that this doesn't include check scripts because changing those will
- # # already trigger the check workflow.
- # - 'scripts/binary_to_array.py'
- # - 'scripts/build.sh'
- # - 'scripts/install_prereqs.sh'
- # - 'scripts/localize_podfile.swift'
- # - 'scripts/pod_lib_lint.rb'
- # - 'scripts/run_firestore_emulator.sh'
- # - 'scripts/setup_*'
- # - 'scripts/sync_project.rb'
- # - 'scripts/test_quickstart.sh'
- # - 'scripts/xcresult_logs.py'
- # # This workflow
- # - '.github/workflows/firestore.yml'
- # # Rebuild on Ruby infrastructure changes.
- # - 'Gemfile*'
- # check:
- # needs: changes
- # # Either a scheduled run from public repo, or a pull request with firestore changes.
- # if: |
- # (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') ||
- # (github.event_name == 'pull_request' && needs.changes.outputs.changed == 'true')
- # runs-on: macos-15
- # steps:
- # - uses: actions/checkout@v4
- # - uses: actions/setup-python@v5
- # with:
- # python-version: 3.11
- # - name: Setup check
- # run: scripts/setup_check.sh
- # - name: Run check
- # run: scripts/check.sh --test-only
- # cmake:
- # needs: check
- # # Either a scheduled run from public repo, or a pull request with firestore changes.
- # if: |
- # (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') ||
- # (github.event_name == 'pull_request' && needs.changes.outputs.changed == 'true')
- # strategy:
- # matrix:
- # os: [macos-15, ubuntu-latest]
- # env:
- # MINT_PATH: ${{ github.workspace }}/mint
- # runs-on: ${{ matrix.os }}
- # steps:
- # - uses: actions/checkout@v4
- # - name: Prepare ccache
- # uses: actions/cache@v4
- # with:
- # path: ${{ runner.temp }}/ccache
- # key: firestore-ccache-${{ runner.os }}-${{ github.sha }}
- # restore-keys: |
- # firestore-ccache-${{ runner.os }}-
- # - name: Cache Mint packages
- # uses: actions/cache@v4
- # with:
- # path: ${{ env.MINT_PATH }}
- # key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
- # restore-keys: ${{ runner.os }}-mint-
- # - uses: actions/setup-python@v5
- # with:
- # python-version: '3.11'
- # - name: Setup build
- # run: scripts/install_prereqs.sh Firestore ${{ runner.os }} cmake
- # - name: Build and test
- # run: |
- # export EXPERIMENTAL_MODE=true
- # export CCACHE_DIR=${{ runner.temp }}/ccache
- # scripts/third_party/travis/retry.sh scripts/build.sh Firestore ${{ runner.os }} cmake
- # cmake-prod-db:
- # needs: check
- # # Either a scheduled run from public repo, or a pull request with firestore changes.
- # if: |
- # (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') ||
- # (github.event_name == 'pull_request' && needs.changes.outputs.changed == 'true')
- # strategy:
- # matrix:
- # os: [macos-15]
- # databaseId: [(default), test-db]
- # env:
- # plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- # MINT_PATH: ${{ github.workspace }}/mint
- # TARGET_DATABASE_ID: ${{ matrix.databaseId }}
- # runs-on: ${{ matrix.os }}
- # steps:
- # - uses: actions/checkout@v4
- # - name: Prepare ccache
- # uses: actions/cache@v4
- # with:
- # path: ${{ runner.temp }}/ccache
- # key: firestore-ccache-${{ matrix.databaseId }}-${{ runner.os }}-${{ github.sha }}
- # restore-keys: |
- # firestore-ccache-${{ matrix.databaseId }}-${{ runner.os }}-
- # - name: Cache Mint packages
- # uses: actions/cache@v4
- # with:
- # path: ${{ env.MINT_PATH }}
- # key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
- # restore-keys: ${{ runner.os }}-mint-
- # - uses: actions/setup-python@v5
- # with:
- # python-version: '3.11'
- # - name: Install Secret GoogleService-Info.plist
- # run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/firestore.plist.gpg \
- # Firestore/Example/App/GoogleService-Info.plist "$plist_secret"
- # - name: Install Google Service Account key
- # run: |
- # scripts/decrypt_gha_secret.sh scripts/gha-encrypted/firestore-integration.json.gpg \
- # google-service-account.json "$plist_secret"
- # # create composite indexes with Terraform
- # - name: Set up Google Cloud SDK
- # uses: google-github-actions/setup-gcloud@v1
- # - name: Setup Terraform
- # uses: hashicorp/setup-terraform@633666f66e0061ca3b725c73b2ec20cd13a8fdd1 # v2
- # - name: Terraform Init
- # run: |
- # cd Firestore
- # terraform init
- # - name: Terraform Apply
- # run: |
- # cd Firestore
- # # Define a temporary file, redirect both stdout and stderr to it
- # output_file=$(mktemp)
- # if ! terraform apply -var-file=../google-service-account.json -auto-approve > "$output_file" 2>&1 ; then
- # cat "$output_file"
- # if cat "$output_file" | grep -q "index already exists"; then
- # echo "==================================================================================="
- # echo "Terraform apply failed due to index already exists; We can safely ignore this error."
- # echo "==================================================================================="
- # fi
- # exit 1
- # fi
- # rm -f "$output_file"
- # env:
- # GOOGLE_APPLICATION_CREDENTIALS: ../google-service-account.json
- # continue-on-error: true
- # - name: Setup build
- # run: scripts/install_prereqs.sh Firestore ${{ runner.os }} cmake
- # - name: Build and test
- # run: |
- # export CCACHE_DIR=${{ runner.temp }}/ccache
- # scripts/third_party/travis/retry.sh scripts/build.sh Firestore ${{ runner.os }} cmake
- # sanitizers-mac:
- # needs: check
- # # Either a scheduled run from public repo, or a pull request with firestore changes.
- # if: |
- # (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') ||
- # (github.event_name == 'pull_request' && needs.changes.outputs.changed == 'true')
- # strategy:
- # matrix:
- # os: [macos-15]
- # sanitizer: [asan, tsan]
- # runs-on: ${{ matrix.os }}
- # env:
- # SANITIZERS: ${{ matrix.sanitizer }}
- # steps:
- # - uses: actions/checkout@v4
- # - name: Prepare ccache
- # uses: actions/cache@v4
- # with:
- # path: ${{ runner.temp }}/ccache
- # key: ${{ matrix.sanitizer }}-firestore-ccache-${{ runner.os }}-${{ github.sha }}
- # restore-keys: |
- # ${{ matrix.sanitizer }}-firestore-ccache-${{ runner.os }}-
- # - uses: actions/setup-python@v5
- # with:
- # python-version: '3.11'
- # - name: Setup build
- # run: scripts/install_prereqs.sh Firestore ${{ runner.os }} cmake
- # - name: Build and test
- # run: |
- # export EXPERIMENTAL_MODE=true
- # export CCACHE_DIR=${{ runner.temp }}/ccache
- # scripts/third_party/travis/retry.sh scripts/build.sh Firestore ${{ runner.os }} cmake
- # sanitizers-ubuntu:
- # needs: check
- # # Either a scheduled run from public repo, or a pull request with firestore changes.
- # if: |
- # (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') ||
- # (github.event_name == 'pull_request' && needs.changes.outputs.changed == 'true')
- # strategy:
- # matrix:
- # os: [ubuntu-latest]
- # # Excluding TSAN on ubuntu because of the warnings it generates around schedule.cc.
- # # This could be due to Apple Clang provide additional support for synchronization
- # # on Apple platforms, which is what we primarily care about.
- # sanitizer: [asan]
- # runs-on: ${{ matrix.os }}
- # env:
- # SANITIZERS: ${{ matrix.sanitizer }}
- # ASAN_OPTIONS: detect_leaks=0
- # steps:
- # - uses: actions/checkout@v3
- # - name: Prepare ccache
- # uses: actions/cache@v4
- # with:
- # path: ${{ runner.temp }}/ccache
- # key: ${{ matrix.sanitizer }}-firestore-ccache-${{ runner.os }}-${{ github.sha }}
- # restore-keys: |
- # ${{ matrix.sanitizer }}-firestore-ccache-${{ runner.os }}-
- # - uses: actions/setup-python@v5
- # with:
- # python-version: '3.11'
- # - name: Setup build
- # run: scripts/install_prereqs.sh Firestore ${{ runner.os }} cmake
- # - name: Build and test
- # run: |
- # export EXPERIMENTAL_MODE=true
- # export CCACHE_DIR=${{ runner.temp }}/ccache
- # scripts/third_party/travis/retry.sh scripts/build.sh Firestore ${{ runner.os }} cmake
- # xcodebuild:
- # needs: check
- # # Either a scheduled run from public repo, or a pull request with firestore changes.
- # if: |
- # (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') ||
- # (github.event_name == 'pull_request')
- # runs-on: macos-15
- # strategy:
- # matrix:
- # target: [iOS, macOS, tvOS]
- # steps:
- # - uses: actions/checkout@v4
- # - uses: mikehardy/buildcache-action@c87cea0ccd718971d6cc39e672c4f26815b6c126
- # with:
- # cache_key: ${{ matrix.target }}
- # - uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
- # - name: Setup build
- # run: scripts/install_prereqs.sh Firestore ${{ matrix.target }} xcodebuild
- # - name: Build and test
- # run: |
- # export EXPERIMENTAL_MODE=true
- # scripts/third_party/travis/retry.sh scripts/build.sh Firestore ${{ matrix.target }} xcodebuild
- # pod-lib-lint:
- # needs: check
- # # Either a scheduled run from public repo, or a pull request with firestore changes.
- # if: |
- # (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') ||
- # (github.event_name == 'pull_request')
- # runs-on: macos-15
- # strategy:
- # matrix:
- # podspec: [
- # 'FirebaseFirestoreInternal.podspec',
- # 'FirebaseFirestore.podspec',
- # ]
- # steps:
- # - uses: actions/checkout@v4
- # - uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
- # - name: Setup Bundler
- # run: ./scripts/setup_bundler.sh
- # - name: Xcode
- # run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
- # - name: Pod lib lint
- # # TODO(#9565, b/227461966): Remove --no-analyze when absl is fixed.
- # run: |
- # scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb ${{ matrix.podspec }} \
- # --platforms=ios \
- # --allow-warnings \
- # --no-analyze
- # # `pod lib lint` takes a long time so only run the other platforms and static frameworks build in the cron.
- # pod-lib-lint-cron:
- # needs: check
- # if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
- # strategy:
- # matrix:
- # podspec: [
- # 'FirebaseFirestoreInternal.podspec',
- # 'FirebaseFirestore.podspec',
- # ]
- # platforms: [
- # 'macos',
- # 'tvos',
- # 'ios',
- # ]
- # flags: [
- # '--use-static-frameworks',
- # '',
- # ]
- # os: [macos-15, macos-14]
- # # Skip matrix cells covered by pod-lib-lint job.
- # exclude:
- # - os: macos-15
- # platforms: 'ios'
- # runs-on: ${{ matrix.os }}
- # steps:
- # - uses: actions/checkout@v4
- # - uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1
- # - name: Setup Bundler
- # run: ./scripts/setup_bundler.sh
- # - name: Xcode
- # run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
- # - name: Pod lib lint
- # # TODO(#9565, b/227461966): Remove --no-analyze when absl is fixed.
- # run: |
- # scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb ${{ matrix.podspec }}\
- # ${{ matrix.flags }} \
- # --platforms=${{ matrix.platforms }} \
- # --allow-warnings \
- # --no-analyze
- # spm-package-resolved:
- # runs-on: macos-15
- # env:
- # FIREBASECI_USE_LATEST_GOOGLEAPPMEASUREMENT: 1
- # FIREBASE_SOURCE_FIRESTORE: 1
- # outputs:
- # cache_key: ${{ steps.generate_cache_key.outputs.cache_key }}
- # steps:
- # - uses: actions/checkout@v4
- # - name: Xcode
- # run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
- # - name: Generate Swift Package.resolved
- # id: swift_package_resolve
- # run: |
- # swift package resolve
- # - name: Generate cache key
- # id: generate_cache_key
- # run: |
- # cache_key="${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}"
- # echo "cache_key=${cache_key}" >> "$GITHUB_OUTPUT"
- # - uses: actions/cache/save@v4
- # id: cache
- # with:
- # path: .build
- # key: ${{ steps.generate_cache_key.outputs.cache_key }}
- # spm-source:
- # needs: [check, spm-package-resolved]
- # # Either a scheduled run from public repo, or a pull request with firestore changes.
- # if: |
- # (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') ||
- # (github.event_name == 'pull_request')
- # strategy:
- # matrix:
- # include:
- # - os: macos-14
- # xcode: Xcode_16.2
- # target: iOS
- # - os: macos-15
- # xcode: Xcode_16.2
- # target: iOS
- # - os: macos-15
- # xcode: Xcode_16.2
- # target: tvOS
- # - os: macos-15
- # xcode: Xcode_16.2
- # target: macOS
- # - os: macos-15
- # xcode: Xcode_16.2
- # target: catalyst
- # - os: macos-15
- # xcode: Xcode_16.2
- # target: visionOS
- # runs-on: ${{ matrix.os }}
- # env:
- # FIREBASE_SOURCE_FIRESTORE: 1
- # steps:
- # - uses: actions/checkout@v4
- # - uses: mikehardy/buildcache-action@c87cea0ccd718971d6cc39e672c4f26815b6c126
- # with:
- # cache_key: spm${{ matrix.os }}-${{ matrix.xcode }}-${{ matrix.target }}
- # - name: Xcode
- # run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
- # - name: Initialize xcodebuild
- # run: scripts/setup_spm_tests.sh
- # - name: iOS Build Test
- # run: scripts/third_party/travis/retry.sh ./scripts/build.sh FirebaseFirestore ${{ matrix.target }} spmbuildonly
- # spm-binary:
- # needs: check
- # # Either a scheduled run from public repo, or a pull request with firestore changes.
- # if: |
- # (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') ||
- # (github.event_name == 'pull_request' && needs.changes.outputs.changed == 'true')
- # runs-on: macos-15
- # steps:
- # - uses: actions/checkout@v4
- # - uses: mikehardy/buildcache-action@c87cea0ccd718971d6cc39e672c4f26815b6c126
- # with:
- # cache_key: spm-binary
- # - name: Xcode
- # run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
- # - name: Initialize xcodebuild
- # run: scripts/setup_spm_tests.sh
- # - name: iOS Build Test
- # run: scripts/third_party/travis/retry.sh ./scripts/build.sh FirebaseFirestore iOS spmbuildonly
- # check-firestore-internal-public-headers:
- # needs: check
- # # Either a scheduled run from public repo, or a pull request with firestore changes.
- # if: |
- # (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') ||
- # (github.event_name == 'pull_request' && needs.changes.outputs.changed == 'true')
- # runs-on: macos-15
- # steps:
- # - uses: actions/checkout@v4
- # - name: Assert that Firestore and FirestoreInternal have identically named headers.
- # run: |
- # fst_dir=Firestore/Source/Public/FirebaseFirestore/
- # fst_internal_dir=FirebaseFirestoreInternal/FirebaseFirestore/
- # comparison=$(comm -3 <(ls $fst_dir | sort) <(ls $fst_internal_dir | sort))
- # if [[ -z "$comparison" ]]; then
- # echo "Success: Directories '$fst_dir' and '$fst_internal_dir' match."
- # else
- # echo "Error: Directories '$fst_dir' and '$fst_internal_dir' differ:"
- # echo "Files only in '$fst_dir':"
- # # Files in this set do not start with whitespace. Grep for them and a
- # # dashed prefix for nicer formatting.
- # echo "$comparison" | grep -v '^\s' | sed 's/^/- /'
- # echo "Files only in '$fst_internal_dir':"
- # # Files in this set start with whitespace. Grep for them and a dashed
- # # prefix for nicer formatting.
- # echo "$comparison" | grep '^\s' | sed 's/^ /- /'
- # exit 1
- # fi
- # # TODO: Re-enable either in or after #11706.
- # # spm-source-cron:
- # # # Don't run on private repo.
- # # if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
- # # runs-on: macos-15
- # # strategy:
- # # matrix:
- # # target: [tvOS, macOS, catalyst]
- # # env:
- # # FIREBASE_SOURCE_FIRESTORE: 1
- # # steps:
- # # - uses: actions/checkout@v4
- # # - uses: mikehardy/buildcache-action@c87cea0ccd718971d6cc39e672c4f26815b6c126
- # # with:
- # # cache_key: ${{ matrix.os }}
- # # - name: Initialize xcodebuild
- # # run: scripts/setup_spm_tests.sh
- # # - name: Build Test - Binary
- # # run: scripts/third_party/travis/retry.sh ./scripts/build.sh FirebaseFirestore ${{ matrix.target }} spmbuildonly
- # spm-binary-cron:
- # # Don't run on private repo.
- # if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
- # runs-on: macos-15
- # strategy:
- # matrix:
- # target: [tvOS, macOS, catalyst]
- # steps:
- # - uses: actions/checkout@v4
- # - uses: mikehardy/buildcache-action@c87cea0ccd718971d6cc39e672c4f26815b6c126
- # with:
- # cache_key: ${{ matrix.target }}
- # - name: Xcode
- # run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
- # - name: Initialize xcodebuild
- # run: scripts/setup_spm_tests.sh
- # - name: Build Test - Binary
- # run: scripts/third_party/travis/retry.sh ./scripts/build.sh FirebaseFirestore ${{ matrix.target }} spmbuildonly
- # # A job that fails if any required job in the test matrix fails,
- # # to be used as a required check for merging.
- # check-required-tests:
- # runs-on: ubuntu-latest
- # name: Check all required Firestore tests results
- # needs: [cmake, cmake-prod-db, xcodebuild, spm-source, spm-binary]
- # steps:
- # - name: Check test matrix
- # if: needs.*.result == 'failure'
- # run: exit 1
- # Disable until FirebaseUI is updated to accept Firebase 9 and quickstart is updated to accept
- # Firebase UI 12
- # quickstart:
- # # Don't run on private repo unless it is a PR.
- # if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
- # env:
- # plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- # signin_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
- # runs-on: macos-14
- # needs: check
- # steps:
- # - uses: actions/checkout@v4
- # - name: Setup quickstart
- # run: scripts/setup_quickstart.sh firestore
- # - name: Install Secret GoogleService-Info.plist
- # run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/qs-firestore.plist.gpg \
- # quickstart-ios/firestore/GoogleService-Info.plist "$plist_secret"
- # - name: Test swift quickstart
- # run: ([ -z $plist_secret ] ||
- # scripts/third_party/travis/retry.sh scripts/test_quickstart.sh Firestore false)
|