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
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
FIREBASE_TOKEN: ${{ env.FIREBASE_TOKEN }}

test_macos:
runs-on: macos-latest
runs-on: macos-15
timeout-minutes: 25
environment: CI Environment
env:
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
sudo npm i -g firebase-tools
- name: Select Xcode version
run: |
sudo xcode-select -switch /Applications/Xcode_16.2.app/Contents/Developer
sudo xcode-select -switch /Applications/Xcode_16.4.app/Contents/Developer
- name: Install FlutterFire
run: |
dart pub global activate --source="path" . --executable="flutterfire" --overwrite
Expand Down
6 changes: 4 additions & 2 deletions packages/flutterfire_cli/test/configure_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,8 @@ void main() {
fail(result2.stderr as String);
}

const iosVersion = '13.0';
// Current Firebase iOS packages used by this test require iOS 15.0+.
const iosVersion = '15.0';
// Update project.pbxproj
final pbxprojResult = Process.runSync(
'sed',
Expand Down Expand Up @@ -1572,7 +1573,8 @@ void main() {
reason: 'Required FlutterFire scripts not found in project.pbxproj',
);

const iosVersion = '13.0';
// Current Firebase iOS packages used by this test require iOS 15.0+.
const iosVersion = '15.0';
// Update project.pbxproj
final pbxprojResult = Process.runSync(
'sed',
Expand Down
Loading