Run GPU-less tests on macOS 11 bots.

Bug: chromium:1273555
Change-Id: Ifcbdccd930180d2df28e8ab7b1b6e3ef93f8564b
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/70940
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Corentin Wallez 2021-11-25 16:51:00 +00:00 committed by Dawn LUCI CQ
parent fc3a8547bc
commit 10bb40a03d
3 changed files with 6 additions and 6 deletions

View File

@ -140,7 +140,7 @@ buckets {
name: "mac-dbg" name: "mac-dbg"
swarming_host: "chromium-swarm.appspot.com" swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64" dimensions: "cpu:x86-64"
dimensions: "os:Mac-10.15" dimensions: "os:Mac-11"
dimensions: "pool:luci.flex.ci" dimensions: "pool:luci.flex.ci"
recipe { recipe {
name: "dawn" name: "dawn"
@ -169,7 +169,7 @@ buckets {
name: "mac-rel" name: "mac-rel"
swarming_host: "chromium-swarm.appspot.com" swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64" dimensions: "cpu:x86-64"
dimensions: "os:Mac-10.15" dimensions: "os:Mac-11"
dimensions: "pool:luci.flex.ci" dimensions: "pool:luci.flex.ci"
recipe { recipe {
name: "dawn" name: "dawn"
@ -482,7 +482,7 @@ buckets {
name: "mac-dbg" name: "mac-dbg"
swarming_host: "chromium-swarm.appspot.com" swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64" dimensions: "cpu:x86-64"
dimensions: "os:Mac-10.15" dimensions: "os:Mac-11"
dimensions: "pool:luci.flex.try" dimensions: "pool:luci.flex.try"
recipe { recipe {
name: "dawn" name: "dawn"
@ -512,7 +512,7 @@ buckets {
name: "mac-rel" name: "mac-rel"
swarming_host: "chromium-swarm.appspot.com" swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64" dimensions: "cpu:x86-64"
dimensions: "os:Mac-10.15" dimensions: "os:Mac-11"
dimensions: "pool:luci.flex.try" dimensions: "pool:luci.flex.try"
recipe { recipe {
name: "dawn" name: "dawn"

View File

@ -7,7 +7,7 @@
name: "dawn" name: "dawn"
access: "group:all" access: "group:all"
lucicfg { lucicfg {
version: "1.30.1" version: "1.30.4"
package_dir: ".." package_dir: ".."
config_dir: "generated" config_dir: "generated"
entry_point: "main.star" entry_point: "main.star"

View File

@ -113,7 +113,7 @@ def os_enum(dimension, category, console_name):
os = struct( os = struct(
LINUX = os_enum("Ubuntu-18.04", os_category.LINUX, "linux"), LINUX = os_enum("Ubuntu-18.04", os_category.LINUX, "linux"),
MAC = os_enum("Mac-10.15", os_category.MAC, "mac"), MAC = os_enum("Mac-11", os_category.MAC, "mac"),
WINDOWS = os_enum("Windows-10", os_category.WINDOWS, "win"), WINDOWS = os_enum("Windows-10", os_category.WINDOWS, "win"),
) )