Skip to content

Commit b9f2f1e

Browse files
authored
Update xcode to 14e222b (flutter#3868)
Packages part of flutter#125814.
1 parent 5abe9e0 commit b9f2f1e

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,24 @@ platform_properties:
2424
properties:
2525
dependencies: >-
2626
[
27-
{"dependency": "xcode", "version": "14c18"},
27+
{"dependency": "xcode", "version": "14e222b"},
2828
{"dependency": "gems", "version": "v3.3.14"}
2929
]
3030
os: Mac-12
3131
device_type: none
3232
cpu: arm64
33-
xcode: 14c18
33+
xcode: 14e222b
3434
mac_x64:
3535
properties:
3636
dependencies: >-
3737
[
38-
{"dependency": "xcode", "version": "14c18"},
38+
{"dependency": "xcode", "version": "14e222b"},
3939
{"dependency": "gems", "version": "v3.3.14"}
4040
]
4141
os: Mac-12
4242
device_type: none
4343
cpu: x86
44-
xcode: 14c18
44+
xcode: 14e222b
4545

4646
targets:
4747
### iOS+macOS tasks ***

.ci/scripts/create_simulator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# The name here must match remove_simulator.sh
77
readonly DEVICE_NAME=Flutter-iPhone
88
readonly DEVICE=com.apple.CoreSimulator.SimDeviceType.iPhone-14
9-
readonly OS=com.apple.CoreSimulator.SimRuntime.iOS-16-2
9+
readonly OS=com.apple.CoreSimulator.SimRuntime.iOS-16-4
1010

1111
xcrun simctl list
1212
xcrun simctl create "$DEVICE_NAME" "$DEVICE" "$OS" | xargs xcrun simctl boot

script/tool/lib/src/podspec_check_command.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ class PodspecCheckCommand extends PackageLoopingCommand {
141141
podspecPath,
142142
'--configuration=Debug', // Release targets unsupported arm64 simulators. Use Debug to only build against targeted x86_64 simulator devices.
143143
'--skip-tests',
144+
// TODO(vashworth): remove allow-warnings when https://github.com/flutter/flutter/issues/125812 is fixed.
145+
// https://github.com/flutter/flutter/issues/125812
146+
'--allow-warnings',
144147
'--use-modular-headers', // Flutter sets use_modular_headers! in its templates.
145148
if (libraryLint) '--use-libraries'
146149
];

script/tool/test/podspec_check_command_test.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ void main() {
143143
.path,
144144
'--configuration=Debug',
145145
'--skip-tests',
146+
'--allow-warnings',
146147
'--use-modular-headers',
147148
'--use-libraries'
148149
],
@@ -158,6 +159,7 @@ void main() {
158159
.path,
159160
'--configuration=Debug',
160161
'--skip-tests',
162+
'--allow-warnings',
161163
'--use-modular-headers',
162164
],
163165
packagesDir.path),

0 commit comments

Comments
 (0)