Skip to content

Commit

Permalink
test: firebase performance ios SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Dec 9, 2024
1 parent f44aa58 commit cd616b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/all_plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
runs-on: macos-latest
timeout-minutes: 30
env:
FLUTTER_DEPENDENCIES: "cloud_firestore firebase_remote_config cloud_functions firebase_database firebase_auth firebase_storage firebase_analytics firebase_messaging"
FLUTTER_DEPENDENCIES: "cloud_firestore firebase_remote_config cloud_functions firebase_database firebase_auth firebase_storage firebase_analytics firebase_messaging firebase_performance"
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/scripts/swift-integration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ void main(List<String> arguments) async {
}
final plugins = arguments.join(',');
await buildSwiftExampleApp('ios', plugins);
await buildSwiftExampleApp('macos', plugins);
// Remove firebase_performance as it doesn't have macOS support
await _runCommand('flutter', ['pub', 'remove', 'firebase_performance']);
await buildSwiftExampleApp('macos', plugins.replaceFirst('firebase_performance', ''));
}

Future<void> buildSwiftExampleApp(String platform, String plugins) async {
Expand Down

0 comments on commit cd616b3

Please sign in to comment.