[AI] Exclude Live API integration tests #555
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: sdk.core | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - 'FirebaseCore**' | |
| - '.github/workflows/sdk.core.yml' | |
| - '.github/workflows/_spm.yml' | |
| - '.github/workflows/_cocoapods.yml' | |
| - '.github/workflows/_catalyst.yml' | |
| - '.github/workflows/_cocoapods.cron.yml' | |
| - 'scripts/**' # Smoke test changes in `scripts/`. | |
| - 'Gemfile*' | |
| schedule: | |
| # Run every day at 3am (PDT) / 6am (EDT) - cron uses UTC times | |
| - cron: '0 10 * * *' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| spm: | |
| uses: ./.github/workflows/_spm.yml | |
| with: | |
| target: CoreUnit | |
| catalyst: | |
| uses: ./.github/workflows/_catalyst.yml | |
| with: | |
| product: FirebaseCore | |
| target: FirebaseCore-Unit-unit | |
| pod_lib_lint: | |
| uses: ./.github/workflows/_cocoapods.yml | |
| with: | |
| product: FirebaseCore | |
| core-cron-only: | |
| needs: pod_lib_lint | |
| uses: ./.github/workflows/_cocoapods.cron.yml | |
| with: | |
| product: FirebaseCore | |
| platforms: '[ "ios", "tvos", "macos" ]' | |
| flags: '[ "--use-static-frameworks" ]' | |
| runs_on: macos-26 | |
| xcode: Xcode_26.4 | |
| # For toolchains var, see https://github.com/actions/runner-images/issues/13135#issuecomment-3397914993 | |
| setup_command: | | |
| echo "TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault" >> $GITHUB_ENV |