Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable flaky Storage ObjC quickstart on Xcode 15.2 #12399

Merged
merged 3 commits into from
Feb 16, 2024
Merged
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
13 changes: 8 additions & 5 deletions .github/workflows/storage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,17 @@ jobs:
quickstart:
# 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'
# TODO: See #12399 and restore Objective-C testing for Xcode 15 if GHA is fixed.
strategy:
matrix:
include:
- os: macos-12
xcode: Xcode_14.2
- os: macos-13
- swift: swift
os: macos-13
xcode: Xcode_15.2
- swift: swift
os: macos-13
xcode: Xcode_15.2
env:
plist_secret: ${{ secrets.GHASecretsGPGPassphrase1 }}
Expand All @@ -134,10 +139,8 @@ jobs:
quickstart-ios/storage/GoogleService-Info.plist "$plist_secret"
- name: Xcode
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
- name: Test objc quickstart
run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh Storage true)
- name: Test swift quickstart
run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh Storage true swift)
- name: Test quickstart
run: ([ -z $plist_secret ] || scripts/third_party/travis/retry.sh scripts/test_quickstart.sh Storage true ${{ matrix.swift }})

quickstart-ftl-cron-only:
# Don't run on private repo.
Expand Down
Loading