analytics #1979
This file contains 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: analytics | |
on: | |
pull_request: | |
paths: | |
- 'FirebaseAnalytics**' | |
- 'GoogleAppMeasurement**' | |
- '.github/workflows/analytics.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: | |
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: | |
target: [ios, tvos, macos] | |
os: [macos-14, macos-13] | |
include: | |
- os: macos-14 | |
xcode: Xcode_15.3 | |
- os: macos-13 | |
xcode: Xcode_15.2 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
- name: Setup Bundler | |
run: scripts/setup_bundler.sh | |
- name: Xcode | |
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer | |
- name: GoogleAppMeasurement | |
run: scripts/third_party/travis/retry.sh pod spec lint GoogleAppMeasurement.podspec --platforms=${{ matrix.target }} --sources=https://github.com/firebase/SpecsDev.git,https://github.com/firebase/SpecsStaging.git,https://cdn.cocoapods.org/ | |
- name: FirebaseAnalytics | |
run: scripts/third_party/travis/retry.sh pod spec lint FirebaseAnalytics.podspec --platforms=${{ matrix.target }} --sources=https://github.com/firebase/SpecsDev.git,https://github.com/firebase/SpecsStaging.git,https://cdn.cocoapods.org/ | |
# The following steps are only run on `ios` due to product availability. | |
- name: GoogleAppMeasurementOnDeviceConversion | |
run: scripts/third_party/travis/retry.sh pod spec lint GoogleAppMeasurementOnDeviceConversion.podspec --platforms=ios --sources=https://github.com/firebase/SpecsDev.git,https://github.com/firebase/SpecsStaging.git,https://cdn.cocoapods.org/ | |
- name: FirebaseAnalyticsOnDeviceConversion | |
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseAnalyticsOnDeviceConversion.podspec --platforms=ios | |
# TODO: Consider pushing GoogleAppMeasurement.podspec to SpecsDev to enable similar test | |
# for FirebaseAnalytics.podspec |