| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- name: core_extension
- on:
- pull_request:
- paths:
- - 'FirebaseCoreExtension.podspec'
- - 'FirebaseCore/Extension/**'
- - '.github/workflows/core_extension.yml'
- - 'Gemfile*'
- schedule:
- # Run every day at 2am (PST) - cron uses UTC times
- - cron: '0 10 * * *'
- jobs:
- # Since `FirebaseCoreExtension` only contains headers, linting is sufficient for testing.
- 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'
- runs-on: macos-11
- strategy:
- matrix:
- target: [ios, tvos, macos]
- env:
- # This env var is set because the job has a dependency on the unpublished HeatbeatLoggingTestUtils.
- POD_LIB_LINT_ONLY: 1
- steps:
- - uses: actions/checkout@v2
- - name: Setup Bundler
- run: scripts/setup_bundler.sh
- - name: Build and test
- run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseCoreExtension.podspec --platforms=${{ matrix.target }}
- core-internal-cron-only:
- # Don't run on private repo.
- if: github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
- runs-on: macos-11
- strategy:
- matrix:
- target: [ios, tvos, macos]
- flags: [
- '--use-static-frameworks'
- ]
- needs: pod-lib-lint
- steps:
- - uses: actions/checkout@v2
- - name: Setup Bundler
- run: scripts/setup_bundler.sh
- - name: PodLibLint CoreInternal Cron
- run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseCoreExtension.podspec --platforms=${{ matrix.target }} ${{ matrix.flags }}
|