Skip to content

Commit

Permalink
Make the cupertino_http workflow work after 'macos-latest' upgrade (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
brianquinlan authored Apr 25, 2024
1 parent 34d7087 commit 9780081
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cupertino.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ jobs:
if: always() && steps.install.outcome == 'success'
- uses: futureware-tech/simulator-action@bfa03d93ec9de6dacb0c5553bbf8da8afc6c2ee9
with:
model: 'iPhone 8'
os: iOS
os_version: '>=12.0'
- name: Run tests
run: |
cd example
flutter pub get
flutter test --timeout=1200s integration_test/main.dart
flutter test integration_test/main.dart
2 changes: 2 additions & 0 deletions pkgs/cupertino_http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## 1.4.1-wip

* Upgrade to `package:ffigen` 11.0.0.
* Update minimum supported iOS/macOS versions to be in sync with the minimum
(best effort) supported for Flutter: iOS 12, macOS 10.14

## 1.4.0

Expand Down
2 changes: 1 addition & 1 deletion pkgs/cupertino_http/ios/cupertino_http.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Pod::Spec.new do |s|
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.platform = :ios, '9.0'
s.platform = :ios, '12.0'
s.requires_arc = []

# Flutter.framework does not contain a i386 slice.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/cupertino_http/macos/cupertino_http.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Pod::Spec.new do |s|
s.dependency 'FlutterMacOS'
s.requires_arc = []

s.platform = :osx, '10.11'
s.platform = :osx, '10.14'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.swift_version = '5.0'
end

0 comments on commit 9780081

Please sign in to comment.