-
Notifications
You must be signed in to change notification settings - Fork 3.4k
test xcode 26 beta 4 #9703
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
test xcode 26 beta 4 #9703
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -327,8 +327,8 @@ Future<int> _runIOSPluginUnitTests(String testPluginPath) async { | |
|
||
const String deviceName = 'Pigeon-Test-iPhone'; | ||
const String deviceType = 'com.apple.CoreSimulator.SimDeviceType.iPhone-14'; | ||
const String deviceRuntime = 'com.apple.CoreSimulator.SimRuntime.iOS-18-2'; | ||
const String deviceOS = '18.2'; | ||
const String deviceRuntime = 'com.apple.CoreSimulator.SimRuntime.iOS-26-0'; | ||
const String deviceOS = '26.0'; | ||
Comment on lines
+330
to
+331
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The iOS simulator runtime and OS versions appear to be incorrect. There is no public iOS 26.0. This is likely a typo and should probably be
|
||
await _createSimulator(deviceName, deviceType, deviceRuntime); | ||
return runXcodeBuild( | ||
'$examplePath/ios', | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -159,6 +159,7 @@ class PodspecCheckCommand extends PackageLoopingCommand { | |
podspecPath, | ||
'--configuration=Debug', // Release targets unsupported arm64 simulators. Use Debug to only build against targeted x86_64 simulator devices. | ||
'--skip-tests', | ||
'--allow-warnings', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
if (libraryLint) '--use-libraries' | ||
]; | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The iOS simulator runtime version
iOS-26-0
appears to be incorrect, as there is no public iOS version 26. This is likely a typo and should probably beiOS-18-0
to align with Xcode 16 beta. An incorrect runtime version will cause CI builds to fail.