Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ permissions: write-all
jobs:
build_android:
name: build-android-unity${{ inputs.unity_version }}-CPP${{ inputs.firebase_cpp_sdk_version }}
runs-on: macos-14
runs-on: macos-15
strategy:
fail-fast: false
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ permissions: write-all
jobs:
build_ios:
name: build-ios-unity${{ inputs.unity_version }}-CPP${{ inputs.firebase_cpp_sdk_version }}
runs-on: macos-14
runs-on: macos-15
strategy:
fail-fast: false

env:
xcodeVersion: "16.2"
xcodeVersion: "26.2"

steps:
- uses: lukka/get-cmake@latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ permissions: write-all
jobs:
build_desktop:
name: build-macOS-unity${{ inputs.unity_version}}-CPP${{ inputs.firebase_cpp_sdk_version }}
runs-on: macos-14
runs-on: macos-15
strategy:
fail-fast: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_tvos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ permissions: write-all
jobs:
build_tvos:
name: build-tvos-unity${{ inputs.unity_version }}-CPP${{ inputs.firebase_cpp_sdk_version }}
runs-on: macos-14
runs-on: macos-15
strategy:
fail-fast: false

env:
xcodeVersion: "16.2"
xcodeVersion: "26.2"

steps:
- uses: lukka/get-cmake@latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:
fail-fast: false
matrix: ${{ fromJson(needs.check_and_prepare.outputs.build_matrix) }}
env:
xcodeVersion: "16.2"
xcodeVersion: "26.2"
steps:
- uses: lukka/get-cmake@latest
with:
Expand Down Expand Up @@ -547,7 +547,7 @@ jobs:
fail-fast: false
matrix: ${{ fromJson(needs.check_and_prepare.outputs.test_matrix) }}
env:
xcodeVersion: "16.2"
xcodeVersion: "26.2"
steps:
- id: matrix_info
shell: bash
Expand Down Expand Up @@ -836,7 +836,7 @@ jobs:
# Our best guess is something to do with the MAC address all being the same across the Mac runners.
# Therefore we wait for the builds to complete before returning the license.
# Ensures that all the build and playmode tests complete before the license is returned from all the machines.
runs-on: macos-14
runs-on: macos-15
# Wait for both build and playmode to finish before returning the license
needs: [build_testapp, playmode_test]
if: always()
Expand Down
1 change: 1 addition & 0 deletions docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ Release Notes
- General: Update to Firebase C++ SDK version 13.7.0.
- General (Android): Update to Firebase Android BoM version 34.13.0.
- General (iOS): Update to Firebase Cocoapods version 12.13.0.
- General (iOS, tvOS, Desktop): iOS, tvOS, and macOS SDKs are now built using Xcode 26.2.
Comment thread
a-maurice marked this conversation as resolved.
- General: Strip debug symbols from Mac and Linux libraries, to reduce library size.
- General: Enforce the Xcode CMake generator for iOS and tvOS SDKs.
- General (iOS): Improve initialization to address intermittent crashes on iOS 26.
Expand Down
2 changes: 1 addition & 1 deletion firebaseai/testapp/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inside the Unity Editor.
## Requirements

* [Unity](http://unity3d.com/) The quickstart project requires 2021.3 or higher.
* [Xcode](https://developer.apple.com/xcode/) 16.2 or higher
* [Xcode](https://developer.apple.com/xcode/) 26.2 or higher
Comment thread
a-maurice marked this conversation as resolved.
(when developing for iOS).
* [Android SDK](https://developer.android.com/studio/index.html#downloads)
(when developing for Android).
Expand Down
2 changes: 1 addition & 1 deletion scripts/gha/print_matrix_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

# GitHub Runner
WINDOWS_RUNNER = "windows-latest"
MACOS_RUNNER = "macos-14"
MACOS_RUNNER = "macos-15"
LINUX_RUNNER = "ubuntu-22.04"

PARAMETERS = {
Expand Down
Loading