From 0b76c9b46342bc57cd942e423fc6acc8a9034ce3 Mon Sep 17 00:00:00 2001 From: Dan Field Date: Thu, 13 Apr 2023 10:45:41 -0700 Subject: [PATCH] Do not use Macmini7,1 for host tests (flutter/engine#41159) fixes https://github.com/flutter/flutter/issues/124678 those machines do not support compute subgroups. They make up only a relatively small fraction of the pool. This does not restrict the arm machines, as they're already restricted by the cpu architecture dimension. --- engine/src/flutter/ci/builders/mac_host_engine.json | 6 ++++-- engine/src/flutter/ci/builders/mac_unopt.json | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/engine/src/flutter/ci/builders/mac_host_engine.json b/engine/src/flutter/ci/builders/mac_host_engine.json index 775c9d6bb84..6ccec21fd6f 100644 --- a/engine/src/flutter/ci/builders/mac_host_engine.json +++ b/engine/src/flutter/ci/builders/mac_host_engine.json @@ -16,7 +16,8 @@ "drone_dimensions": [ "device_type=none", "os=Mac-12", - "cpu=x86" + "cpu=x86", + "mac_model=Macmini8,1" ], "gclient_custom_vars": { "download_android_deps": false @@ -72,7 +73,8 @@ "drone_dimensions": [ "device_type=none", "os=Mac-12", - "cpu=x86" + "cpu=x86", + "mac_model=Macmini8,1" ], "gclient_custom_vars": { "download_android_deps": false diff --git a/engine/src/flutter/ci/builders/mac_unopt.json b/engine/src/flutter/ci/builders/mac_unopt.json index ebbb27c6d8e..14fb72ba48c 100644 --- a/engine/src/flutter/ci/builders/mac_unopt.json +++ b/engine/src/flutter/ci/builders/mac_unopt.json @@ -13,7 +13,8 @@ "drone_dimensions": [ "device_type=none", "os=Mac-12", - "cpu=x86" + "cpu=x86", + "mac_model=Macmini8,1" ], "gclient_custom_vars": { "download_android_deps": false