Upgrade LUCI configs to use Mac-12

Fixed: 1353832, 1355592
Change-Id: I677983b8414398fbb27f02f75fad25ff9ad8388b
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3848799
Reviewed-by: Mark Mentovai <mark@chromium.org>
Commit-Queue: Justin Cohen <justincohen@chromium.org>
This commit is contained in:
Justin Cohen 2022-08-22 19:34:08 -04:00 committed by Justin Cohen
parent a2d0cefe01
commit fc2e7c06b8
3 changed files with 15 additions and 15 deletions

View File

@ -156,7 +156,7 @@ buckets {
name: "crashpad_ios_arm64_dbg"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.ci"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
@ -193,7 +193,7 @@ buckets {
name: "crashpad_ios_arm64_rel"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.ci"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
@ -230,7 +230,7 @@ buckets {
name: "crashpad_ios_x64_dbg"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.ci"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
@ -266,7 +266,7 @@ buckets {
name: "crashpad_ios_x64_rel"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.ci"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
@ -368,7 +368,7 @@ buckets {
name: "crashpad_mac_x64_dbg"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.ci"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
@ -404,7 +404,7 @@ buckets {
name: "crashpad_mac_x64_rel"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.ci"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
@ -658,7 +658,7 @@ buckets {
name: "crashpad_ios_arm64_dbg"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.try"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
@ -692,7 +692,7 @@ buckets {
name: "crashpad_ios_arm64_rel"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.try"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
@ -726,7 +726,7 @@ buckets {
name: "crashpad_ios_x64_dbg"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.try"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
@ -759,7 +759,7 @@ buckets {
name: "crashpad_ios_x64_rel"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.try"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
@ -852,7 +852,7 @@ buckets {
name: "crashpad_mac_x64_dbg"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.try"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
@ -885,7 +885,7 @@ buckets {
name: "crashpad_mac_x64_rel"
swarming_host: "chromium-swarm.appspot.com"
dimensions: "cpu:x86-64"
dimensions: "os:Mac-11"
dimensions: "os:Mac-12"
dimensions: "pool:luci.flex.try"
exe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"

View File

@ -7,7 +7,7 @@
name: "crashpad"
access: "group:all"
lucicfg {
version: "1.30.9"
version: "1.32.1"
package_dir: ".."
config_dir: "generated"
entry_point: "main.star"

View File

@ -158,11 +158,11 @@ def crashpad_dimensions(platform, bucket):
if platform == "fuchsia":
dimensions["os"] = "Ubuntu-18.04"
elif platform == "ios":
dimensions["os"] = "Mac-11"
dimensions["os"] = "Mac-12"
elif platform == "linux":
dimensions["os"] = "Ubuntu-18.04"
elif platform == "mac":
dimensions["os"] = "Mac-11"
dimensions["os"] = "Mac-12"
elif platform == "win":
dimensions["os"] = "Windows-10"