Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,6 @@ jobs:
platforms: '[ "ios", "tvos --skip-tests", "macos --skip-tests", "watchos --skip-tests" ]'
flags: '[ "--use-static-frameworks" ]'
setup_command: scripts/configure_test_keychain.sh
ignore_deprecation_warnings: true
secrets:
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
10 changes: 8 additions & 2 deletions .github/workflows/common_cocoapods_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,11 @@ on:
required: false
default: "macos-15"

env:
FIREBASE_CI: true
# Whether to ignore deprecation warnings by setting FIREBASE_CI.
ignore_deprecation_warnings:
type: boolean
required: false
default: false

jobs:
cron-job:
Expand All @@ -67,6 +70,9 @@ jobs:
run: scripts/setup_bundler.sh
- name: Xcode
run: sudo xcode-select -s /Applications/${{ inputs.xcode }}.app/Contents/Developer
- name: Set FIREBASE_CI, if needed.
if: inputs.ignore_deprecation_warnings == true
run: echo "FIREBASE_CI=true" >> $GITHUB_ENV
- name: Run setup command, if needed.
if: inputs.setup_command != ''
env:
Expand Down
Loading