-
Notifications
You must be signed in to change notification settings - Fork 6k
Conversation
This excludes Macmini7,1. Fixes flutter/flutter#124877
It looks like a string is expected, not a map:
|
The error is coming from the .ci.yaml proto https://cs.opensource.google/flutter/cocoon/+/main:app_dart/lib/src/model/ci_yaml/target.dart;l=40, seems like some changes are going to be needed in the cocoon scheduler. |
.ci.yaml
Outdated
@@ -55,6 +55,9 @@ platform_properties: | |||
cpu: x86 | |||
os: Mac-12 | |||
xcode: 14a5294e # xcode 14.0 beta 5 | |||
dimensions: | |||
mac_model: >- | |||
["Macmini8,1", "Macmini9.1"] |
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.
It seems like mac_model: "Macmini8,1|Macmini9.1"
would do the trick
.ci.yaml
Outdated
@@ -55,6 +55,8 @@ platform_properties: | |||
cpu: x86 | |||
os: Mac-12 | |||
xcode: 14a5294e # xcode 14.0 beta 5 | |||
dimensions: | |||
mac_model: "Macmini8,1|Macmini9.1" |
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.
mac_model: "Macmini8,1|Macmini9.1" | |
mac_model: "Macmini8,1|Macmini9,1" |
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.
Thanks for the change!
👍🏻 No worries. It would be great if this could be self-service, but I think the documentation needs a lot of improvements before that's realistic. |
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.
LGTM
@zanderso are you referring to the ciyaml readme? If so I can open a follow up task to add more detail. |
Yeah, it would be great to get something like a schema for the file, what fields can go where, what their types and values can be, etc.. And of course what effects they actually have on CI. |
Okay cool! I will open an infra ticket for that. Created: flutter/flutter#124893 for tracking ci.yaml updates. |
You could also remove the Line 342 in 4ce42fe
|
…124900) flutter/engine@e9739bc...f794529 2023-04-14 [email protected] Change v2 `mac_unopt` orchestrator builder to Linux (flutter/engine#41184) 2023-04-14 [email protected] Specify allowed Macmini models (flutter/engine#41219) 2023-04-14 [email protected] Migrate mac_host_engine to engine v2 builds. (flutter/engine#41149) 2023-04-14 [email protected] Remove cores dimension from Mac Host clang-tidy (flutter/engine#41214) 2023-04-14 [email protected] Run mac_host_engine orchestrator on arm Macs (flutter/engine#41185) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
…lutter#124900) flutter/engine@e9739bc...f794529 2023-04-14 [email protected] Change v2 `mac_unopt` orchestrator builder to Linux (flutter/engine#41184) 2023-04-14 [email protected] Specify allowed Macmini models (flutter/engine#41219) 2023-04-14 [email protected] Migrate mac_host_engine to engine v2 builds. (flutter/engine#41149) 2023-04-14 [email protected] Remove cores dimension from Mac Host clang-tidy (flutter/engine#41214) 2023-04-14 [email protected] Run mac_host_engine orchestrator on arm Macs (flutter/engine#41185) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
This excludes Macmini7,1.
Fixes flutter/flutter#124877