From 78e4e84ebd62ad0aab7dfaca72300ea18e02b834 Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Wed, 19 Nov 2025 13:45:53 +0000 Subject: [PATCH] ci: update sample swiftui build --- .github/workflows/sample.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sample.yml b/.github/workflows/sample.yml index 80493952fb..de9125bfce 100644 --- a/.github/workflows/sample.yml +++ b/.github/workflows/sample.yml @@ -30,6 +30,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@main + - name: Select Xcode version + run: sudo xcode-select -switch /Applications/Xcode_26.0.1.app/Contents/Developer - name: Build SwiftUI Sample run: | cd samples/swiftui/FirebaseSwiftUISample @@ -37,7 +39,7 @@ jobs: -project FirebaseSwiftUISample.xcodeproj \ -scheme FirebaseSwiftUISample \ -sdk iphonesimulator \ - -destination 'platform=iOS Simulator,OS=latest,name=iPhone 16 Pro' \ + -destination 'platform=iOS Simulator,OS=latest,name=iPhone 17' \ clean build \ ONLY_ACTIVE_ARCH=YES