| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- name: appdistribution
- on:
- workflow_dispatch:
- pull_request:
- paths:
- - 'FirebaseAppDistribution**'
- - '.github/workflows/appdistribution.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:
- uses: ./.github/workflows/common.yml
- with:
- target: AppDistributionUnit
- platforms: iOS
- catalyst:
- uses: ./.github/workflows/common_catalyst.yml
- with:
- product: FirebaseAppDistribution
- target: FirebaseAppDistribution-Unit-unit
- pod-lib-lint:
- # 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'
- strategy:
- matrix:
- include:
- - os: macos-14
- xcode: Xcode_16.2
- - os: macos-15
- xcode: Xcode_16.3
- 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: Build and test
- run: |
- scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseAppDistribution.podspec \
- --platforms=ios
- appdistribution-cron-only:
- if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
- runs-on: macos-15
- strategy:
- matrix:
- target: [ios]
- 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: PodLibLint App Distribution Cron
- run: |
- scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseAppDistribution.podspec \
- --platforms=${{ matrix.target }} ${{ matrix.flags }}
|