Skip to content
Draft
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
19 changes: 17 additions & 2 deletions .github/workflows/_spm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ on:
required: false
default: false

# Whether to test Xcode 27. Defaults to false.
test_xcode27:
type: boolean
required: false
default: false

# Custom environment variables to inject into the jobs.
# Expected to be a JSON-formatted string.
# Example: '{"FIREBASE_APP_CHECK_BRANCH": "nc/target-split"}'
Expand Down Expand Up @@ -126,14 +132,23 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-15, macos-26]
xcode: [Xcode_26.2, Xcode_26.4]
os: [macos-15, macos-26, xcode-27]
xcode: [Xcode_26.2, Xcode_26.4, Xcode_27.0]
platform: [iOS, tvOS, macOS, watchOS, catalyst, visionOS]
exclude:
- os: macos-15
xcode: Xcode_26.4
- os: macos-15
xcode: Xcode_27.0
- os: macos-26
xcode: Xcode_26.2
- os: macos-26
xcode: Xcode_27.0
- os: xcode-27
xcode: Xcode_26.2
- os: xcode-27
xcode: Xcode_26.4
- xcode: ${{ !inputs.test_xcode27 && 'Xcode_27.0' || 'none' }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/infra.samples.client_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,12 @@ jobs:
#TODO(ncooke3): Add multi-platform support: tvOS, macOS, catalyst
platform: [iOS]
scheme: [ClientApp]
os: [macos-15]
os: [macos-15, xcode-27]
include:
- os: macos-15
xcode: Xcode_26.2
- os: xcode-27
xcode: Xcode_27.0
uses: ./.github/workflows/_build.yml
with:
product: ${{ matrix.scheme }}
Expand All @@ -51,10 +53,12 @@ jobs:
#TODO(ncooke3): Add multi-platform support: tvOS, macOS, catalyst
platform: [iOS]
scheme: [ClientApp]
os: [macos-15]
os: [macos-15, xcode-27]
include:
- os: macos-15
xcode: Xcode_26.2
- os: xcode-27
xcode: Xcode_27.0
uses: ./.github/workflows/_build.yml
with:
product: ${{ matrix.scheme }}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/sdk.ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
uses: ./.github/workflows/_spm.yml
with:
target: ${{ matrix.target }}
test_xcode27: true
setup_command: scripts/update_vertexai_responses.sh
env_vars: '{"FIREBASE_APP_CHECK_BRANCH": "main"}'

Expand Down Expand Up @@ -63,6 +64,11 @@ jobs:
xcode: Xcode_26.2
test_filter_arg: --filter IntegrationTests-SPM/LiveSessionTests
log_prefix: xcodebuild-live
- os: xcode-27
target: iOS
xcode: Xcode_27.0
test_filter_arg: --exclude IntegrationTests-SPM/LiveSessionTests
log_prefix: xcodebuild
runs-on: ${{ matrix.os }}
needs: spm
env:
Expand Down Expand Up @@ -109,6 +115,8 @@ jobs:
# TODO: Bump to 26.4 when "Unable to find a destination matching the provided destination specifier" is resolved.
- os: macos-26
xcode: Xcode_26.2
- os: xcode-27
xcode: Xcode_27.0
runs-on: ${{ matrix.os }}
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name || 'main' }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sdk.auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
uses: ./.github/workflows/_spm.yml
with:
target: AuthUnit
test_xcode27: true
buildonly_platforms: macOS

catalyst:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sdk.firestore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,7 @@ jobs:
uses: ./.github/workflows/_spm.yml
with:
target: FirebaseFirestoreTests
test_xcode27: true
platforms: iOS

spm-source-cron:
Expand Down
Loading