Remove quickstart tests from dynamiclinks.yml #3191
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dynamiclinks | |
permissions: | |
contents: read | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'FirebaseDynamicLinks**' | |
- '.github/workflows/dynamiclinks.yml' | |
- 'Interop/Analytics/Public/*.h' | |
- '.github/workflows/common.yml' | |
- '.github/workflows/common_cocoapods.yml' | |
- 'Gemfile*' | |
schedule: | |
# Run every day at 1am (PST) - cron uses UTC times | |
- cron: '0 9 * * *' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
spm: | |
strategy: | |
matrix: | |
target: [FirebaseAppCheckUnit, FirebaseAppCheckUnitSwift] | |
uses: ./.github/workflows/common.yml | |
with: | |
target: FirebaseDynamicLinks | |
buildonly_platforms: iOS | |
platforms: iOS | |
pod_lib_lint: | |
uses: ./.github/workflows/common_cocoapods.yml | |
with: | |
product: FirebaseDynamicLinks | |
platforms: iOS # Dynamic Links only supports iOS. | |
allow_warnings: true | |
dynamiclinks-cron-only: | |
# Don't run on private repo. | |
if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk' | |
runs-on: macos-15 | |
strategy: | |
matrix: | |
flags: [ | |
'--use-static-frameworks' | |
] | |
needs: pod_lib_lint | |
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: PodLibLint Storage Cron | |
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseDynamicLinks.podspec --platforms=ios ${{ matrix.flags }} --allow-warnings |