Skip to content

Commit e3537ad

Browse files
committed
test Xcode 26 beta 1
1 parent c3c4c5a commit e3537ad

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

.ci.yaml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -90,25 +90,25 @@ platform_properties:
9090
[
9191
{"dependency": "ruby", "version": "ruby_3.1-pod_1.13"}
9292
]
93-
os: Mac-14|Mac-15.5
93+
os: Mac-15.5
9494
device_type: none
9595
cpu: arm64
9696
$flutter/osx_sdk : >-
9797
{
98-
"sdk_version": "16c5032a"
98+
"sdk_version": "17a5241e"
9999
}
100100
mac_x64:
101101
properties:
102102
dependencies: >-
103103
[
104104
{"dependency": "ruby", "version": "ruby_3.1-pod_1.13"}
105105
]
106-
os: Mac-14|Mac-15.5
106+
os: Mac-15.5
107107
device_type: none
108108
cpu: x86
109109
$flutter/osx_sdk : >-
110110
{
111-
"sdk_version": "16c5032a"
111+
"sdk_version": "17a5241e"
112112
}
113113
114114
targets:
@@ -1085,7 +1085,6 @@ targets:
10851085
10861086
- name: Mac_arm64 macos_platform_tests stable - packages
10871087
recipe: packages/packages
1088-
presubmit: false
10891088
timeout: 60
10901089
properties:
10911090
channel: stable
@@ -1229,7 +1228,6 @@ targets:
12291228
# Don't run full platform tests on both channels in pre-submit.
12301229
- name: Mac_arm64 ios_platform_tests_shard_1 stable
12311230
recipe: packages/packages
1232-
presubmit: false
12331231
timeout: 60
12341232
properties:
12351233
channel: stable
@@ -1244,7 +1242,6 @@ targets:
12441242
12451243
- name: Mac_arm64 ios_platform_tests_shard_2 stable
12461244
recipe: packages/packages
1247-
presubmit: false
12481245
timeout: 60
12491246
properties:
12501247
channel: stable
@@ -1259,7 +1256,6 @@ targets:
12591256
12601257
- name: Mac_arm64 ios_platform_tests_shard_3 stable
12611258
recipe: packages/packages
1262-
presubmit: false
12631259
timeout: 60
12641260
properties:
12651261
channel: stable
@@ -1274,7 +1270,6 @@ targets:
12741270
12751271
- name: Mac_arm64 ios_platform_tests_shard_4 stable
12761272
recipe: packages/packages
1277-
presubmit: false
12781273
timeout: 60
12791274
properties:
12801275
channel: stable
@@ -1289,7 +1284,6 @@ targets:
12891284
12901285
- name: Mac_arm64 ios_platform_tests_shard_5 stable
12911286
recipe: packages/packages
1292-
presubmit: false
12931287
timeout: 60
12941288
properties:
12951289
channel: stable

.ci/scripts/create_simulator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -o pipefail
99
# The name here must match remove_simulator.sh
1010
readonly DEVICE_NAME=Flutter-iPhone
1111
readonly DEVICE=com.apple.CoreSimulator.SimDeviceType.iPhone-14
12-
readonly OS=com.apple.CoreSimulator.SimRuntime.iOS-18-2
12+
readonly OS=com.apple.CoreSimulator.SimRuntime.iOS-26-0
1313

1414
# Delete any existing devices named Flutter-iPhone. Having more than one may
1515
# cause issues when builds target the device.

.ci/targets/ios_platform_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ tasks:
2222
- name: native test
2323
script: .ci/scripts/tool_runner.sh
2424
# Simulator name and version must match name and version in create_simulator.sh
25-
args: ["native-test", "--ios", "--ios-destination", "platform=iOS Simulator,name=Flutter-iPhone,OS=18.2", "--xcode-warnings-exceptions=script/configs/xcode_warnings_exceptions.yaml"]
25+
args: ["native-test", "--ios", "--ios-destination", "platform=iOS Simulator,name=Flutter-iPhone,OS=26.0", "--xcode-warnings-exceptions=script/configs/xcode_warnings_exceptions.yaml"]
2626
- name: boot simulator
2727
# Ensure simulator is still booted
2828
script: .ci/scripts/boot_simulator.sh

packages/pigeon/tool/shared/test_suites.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,8 +327,8 @@ Future<int> _runIOSPluginUnitTests(String testPluginPath) async {
327327

328328
const String deviceName = 'Pigeon-Test-iPhone';
329329
const String deviceType = 'com.apple.CoreSimulator.SimDeviceType.iPhone-14';
330-
const String deviceRuntime = 'com.apple.CoreSimulator.SimRuntime.iOS-18-2';
331-
const String deviceOS = '18.2';
330+
const String deviceRuntime = 'com.apple.CoreSimulator.SimRuntime.iOS-26-0';
331+
const String deviceOS = '26.0';
332332
await _createSimulator(deviceName, deviceType, deviceRuntime);
333333
return runXcodeBuild(
334334
'$examplePath/ios',

0 commit comments

Comments
 (0)