cr-buildbucket.cfg: Tighten bot dimensions

There was flakiness on CI because of two things:
 - On Windows there is a bot that's only 32bit and our tools are 64bit
so the gn gen step was failing.
 - On macOS we require a minimum SDK version of 10.12 (the default in
build/'s GN files) and would get scheduled on macOS 10.9.

Change-Id: I47db92ec111d310d9b8cf8d9ee75a415df021581
This commit is contained in:
Corentin Wallez 2018-08-30 14:34:46 +02:00 committed by Corentin Wallez
parent 4b74dbef7b
commit 12ee5a530c
1 changed files with 6 additions and 4 deletions

View File

@ -79,6 +79,8 @@ buckets {
hostname: "chromium-swarm.appspot.com" hostname: "chromium-swarm.appspot.com"
builder_defaults { builder_defaults {
dimensions: "pool:luci.flex.ci" dimensions: "pool:luci.flex.ci"
# We have 32bit test configurations but some of our toolchain is 64bit (like CIPD)
dimensions: "cpu:x86-64"
caches { caches {
path: "win_toolchain" path: "win_toolchain"
name: "win_toolchain" name: "win_toolchain"
@ -120,12 +122,12 @@ buckets {
# Mac: unlike Linux we only need to test x64 (and only clang too) # Mac: unlike Linux we only need to test x64 (and only clang too)
builders { builders {
name: "mac-dbg" name: "mac-dbg"
dimensions: "os:Mac" dimensions: "os:Mac-10.13"
mixins: "debug" mixins: "debug"
} }
builders { builders {
name: "mac-rel" name: "mac-rel"
dimensions: "os:Mac" dimensions: "os:Mac-10.13"
mixins: "release" mixins: "release"
} }
@ -234,13 +236,13 @@ buckets: {
# Actually on the CQ # Actually on the CQ
builders { builders {
name: "mac-dbg" name: "mac-dbg"
dimensions: "os:Mac" dimensions: "os:Mac-10.13"
mixins: "debug" mixins: "debug"
} }
# Actually on the CQ # Actually on the CQ
builders { builders {
name: "mac-rel" name: "mac-rel"
dimensions: "os:Mac" dimensions: "os:Mac-10.13"
mixins: "release" mixins: "release"
} }