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

View File

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

View File

@ -113,7 +113,7 @@ def os_enum(dimension, category, console_name):
os = struct(
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"),
)