File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed
Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff 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
4646targets :
4747 # ## iOS+macOS tasks ***
Original file line number Diff line number Diff line change 66# The name here must match remove_simulator.sh
77readonly DEVICE_NAME=Flutter-iPhone
88readonly 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
1111xcrun simctl list
1212xcrun simctl create " $DEVICE_NAME " " $DEVICE " " $OS " | xargs xcrun simctl boot
Original file line number Diff line number Diff 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 ];
Original file line number Diff line number Diff 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),
You can’t perform that action at this time.
0 commit comments