Reland updating manually generated configs
These configs match the output of the new Starlark generated configs that are being worked on. Landing these in advance to a) confirm that they working, and b) make the patch using Starlark a no-op from the config contents perspective. Containsf3dcbf5c5c
anddffb68e49d
that were reverted. BUG=tint:693 Change-Id: Idf03edac2d318695a8088b9f779803b431da9e8c Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/51820 Auto-Submit: Ryan Harrison <rharrison@chromium.org> Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Ryan Harrison <rharrison@chromium.org>
This commit is contained in:
parent
22d891c6c4
commit
ba1fb84855
|
@ -36,6 +36,9 @@ config_groups {
|
|||
builders {
|
||||
name: "tint/try/linux-clang-rel-x64"
|
||||
}
|
||||
builders {
|
||||
name: "tint/try/linux-clang-rel-x86"
|
||||
}
|
||||
builders {
|
||||
name: "tint/try/mac-dbg"
|
||||
}
|
||||
|
@ -51,6 +54,15 @@ config_groups {
|
|||
builders {
|
||||
name: "tint/try/win-clang-rel-x64"
|
||||
}
|
||||
builders {
|
||||
name: "tint/try/win-clang-rel-x86"
|
||||
}
|
||||
builders {
|
||||
name: "tint/try/win-msvc-dbg-x64"
|
||||
}
|
||||
builders {
|
||||
name: "tint/try/win-msvc-rel-x64"
|
||||
}
|
||||
|
||||
retry_config {
|
||||
single_quota: 1
|
||||
|
|
|
@ -95,6 +95,10 @@ builder_mixins {
|
|||
}
|
||||
EOF
|
||||
}
|
||||
caches {
|
||||
path: "win_toolchain"
|
||||
name: "win_toolchain"
|
||||
}
|
||||
}
|
||||
builder_mixins {
|
||||
name: "mac"
|
||||
|
@ -128,10 +132,6 @@ buckets {
|
|||
dimensions: "pool:luci.flex.ci"
|
||||
# We have 32bit test configurations but some of our toolchain is 64bit (like CIPD)
|
||||
dimensions: "cpu:x86-64"
|
||||
caches {
|
||||
path: "win_toolchain"
|
||||
name: "win_toolchain"
|
||||
}
|
||||
recipe {
|
||||
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
|
||||
cipd_version: "refs/heads/master"
|
||||
|
@ -144,24 +144,28 @@ buckets {
|
|||
builders {
|
||||
name: "linux-clang-dbg-x64"
|
||||
mixins: "linux"
|
||||
mixins: "clang"
|
||||
mixins: "debug"
|
||||
mixins: "x64"
|
||||
}
|
||||
builders {
|
||||
name: "linux-clang-dbg-x86"
|
||||
mixins: "linux"
|
||||
mixins: "clang"
|
||||
mixins: "debug"
|
||||
mixins: "x86"
|
||||
}
|
||||
builders {
|
||||
name: "linux-clang-rel-x64"
|
||||
mixins: "linux"
|
||||
mixins: "clang"
|
||||
mixins: "release"
|
||||
mixins: "x64"
|
||||
}
|
||||
builders {
|
||||
name: "linux-clang-rel-x86"
|
||||
mixins: "linux"
|
||||
mixins: "clang"
|
||||
mixins: "release"
|
||||
mixins: "x86"
|
||||
}
|
||||
|
@ -170,12 +174,16 @@ buckets {
|
|||
builders {
|
||||
name: "mac-dbg"
|
||||
mixins: "mac"
|
||||
mixins: "clang"
|
||||
mixins: "debug"
|
||||
mixins: "x64"
|
||||
}
|
||||
builders {
|
||||
name: "mac-rel"
|
||||
mixins: "mac"
|
||||
mixins: "clang"
|
||||
mixins: "release"
|
||||
mixins: "x64"
|
||||
}
|
||||
|
||||
# Windows: test combinations of {clang,msvc}x{release,debug}x{x86,x64}
|
||||
|
@ -216,6 +224,10 @@ buckets {
|
|||
mixins: "no_clang"
|
||||
mixins: "debug"
|
||||
mixins: "x64"
|
||||
caches {
|
||||
path: "win_toolchain"
|
||||
name: "win_toolchain"
|
||||
}
|
||||
}
|
||||
builders {
|
||||
name: "win-msvc-rel-x64"
|
||||
|
@ -223,6 +235,10 @@ buckets {
|
|||
mixins: "no_clang"
|
||||
mixins: "release"
|
||||
mixins: "x64"
|
||||
caches {
|
||||
path: "win_toolchain"
|
||||
name: "win_toolchain"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -238,10 +254,6 @@ buckets: {
|
|||
dimensions: "pool:luci.flex.try"
|
||||
# We have 32bit test configurations but some of our toolchain is 64bit (like CIPD)
|
||||
dimensions: "cpu:x86-64"
|
||||
caches {
|
||||
path: "win_toolchain"
|
||||
name: "win_toolchain"
|
||||
}
|
||||
recipe {
|
||||
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
|
||||
cipd_version: "refs/heads/master"
|
||||
|
@ -269,6 +281,7 @@ buckets: {
|
|||
builders {
|
||||
name: "linux-clang-dbg-x64"
|
||||
mixins: "linux"
|
||||
mixins: "clang"
|
||||
mixins: "debug"
|
||||
mixins: "x64"
|
||||
}
|
||||
|
@ -276,6 +289,7 @@ buckets: {
|
|||
builders {
|
||||
name: "linux-clang-dbg-x86"
|
||||
mixins: "linux"
|
||||
mixins: "clang"
|
||||
mixins: "debug"
|
||||
mixins: "x86"
|
||||
}
|
||||
|
@ -283,6 +297,7 @@ buckets: {
|
|||
builders {
|
||||
name: "linux-clang-rel-x64"
|
||||
mixins: "linux"
|
||||
mixins: "clang"
|
||||
mixins: "release"
|
||||
mixins: "x64"
|
||||
}
|
||||
|
@ -290,6 +305,7 @@ buckets: {
|
|||
builders {
|
||||
name: "linux-clang-rel-x86"
|
||||
mixins: "linux"
|
||||
mixins: "clang"
|
||||
mixins: "release"
|
||||
mixins: "x86"
|
||||
}
|
||||
|
@ -298,13 +314,17 @@ buckets: {
|
|||
builders {
|
||||
name: "mac-dbg"
|
||||
mixins: "mac"
|
||||
mixins: "clang"
|
||||
mixins: "debug"
|
||||
mixins: "x64"
|
||||
}
|
||||
# Actually on the CQ
|
||||
builders {
|
||||
name: "mac-rel"
|
||||
mixins: "mac"
|
||||
mixins: "clang"
|
||||
mixins: "release"
|
||||
mixins: "x64"
|
||||
}
|
||||
|
||||
# Actually on the CQ
|
||||
|
@ -348,6 +368,10 @@ buckets: {
|
|||
mixins: "no_clang"
|
||||
mixins: "debug"
|
||||
mixins: "x64"
|
||||
caches {
|
||||
path: "win_toolchain"
|
||||
name: "win_toolchain"
|
||||
}
|
||||
}
|
||||
# CI Mirror only
|
||||
builders {
|
||||
|
@ -356,6 +380,10 @@ buckets: {
|
|||
mixins: "no_clang"
|
||||
mixins: "release"
|
||||
mixins: "x64"
|
||||
caches {
|
||||
path: "win_toolchain"
|
||||
name: "win_toolchain"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,102 +1,111 @@
|
|||
consoles {
|
||||
consoles: <
|
||||
id: "ci"
|
||||
name: "Tint CI Builders"
|
||||
repo_url: "https://dawn.googlesource.com/tint"
|
||||
refs: "refs/heads/main"
|
||||
manifest_name: "REVISION"
|
||||
|
||||
builders {
|
||||
repo_url: "https://dawn.googlesource.com/tint"
|
||||
refs: "regexp:refs/heads/main"
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/linux-clang-dbg-x64"
|
||||
category: "linux|clang|dbg"
|
||||
short_name: "x64"
|
||||
}
|
||||
builders {
|
||||
name: "buildbucket/luci.tint.ci/linux-clang-dbg-x86"
|
||||
category: "linux|clang|dbg"
|
||||
short_name: "x86"
|
||||
}
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/linux-clang-rel-x64"
|
||||
category: "linux|clang|rel"
|
||||
short_name: "x64"
|
||||
}
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/linux-clang-dbg-x86"
|
||||
category: "linux|clang|dbg"
|
||||
short_name: "x86"
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/linux-clang-rel-x86"
|
||||
category: "linux|clang|rel"
|
||||
short_name: "x86"
|
||||
}
|
||||
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/mac-dbg"
|
||||
category: "mac"
|
||||
short_name: "dbg"
|
||||
}
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/mac-rel"
|
||||
category: "mac"
|
||||
short_name: "rel"
|
||||
}
|
||||
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/win-clang-dbg-x64"
|
||||
category: "win|clang|dbg"
|
||||
short_name: "x64"
|
||||
}
|
||||
builders {
|
||||
name: "buildbucket/luci.tint.ci/win-clang-dbg-x86"
|
||||
category: "win|clang|dbg"
|
||||
short_name: "x86"
|
||||
}
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/win-clang-rel-x64"
|
||||
category: "win|clang|rel"
|
||||
short_name: "x64"
|
||||
}
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/win-clang-dbg-x86"
|
||||
category: "win|clang|dbg"
|
||||
short_name: "x86"
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/win-clang-rel-x86"
|
||||
category: "win|clang|rel"
|
||||
short_name: "x86"
|
||||
}
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/win-msvc-dbg-x64"
|
||||
category: "win|msvc"
|
||||
short_name: "dbg"
|
||||
}
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.ci/win-msvc-rel-x64"
|
||||
category: "win|msvc"
|
||||
short_name: "rel"
|
||||
}
|
||||
}
|
||||
|
||||
consoles {
|
||||
>
|
||||
>
|
||||
consoles: <
|
||||
id: "try"
|
||||
name: "Tint try Builders"
|
||||
manifest_name: "PATCHED"
|
||||
builder_view_only: true
|
||||
|
||||
builders {
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/presubmit"
|
||||
}
|
||||
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/linux-clang-dbg-x64"
|
||||
}
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/linux-clang-rel-x64"
|
||||
}
|
||||
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/linux-clang-dbg-x86"
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/linux-clang-rel-x86"
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/mac-dbg"
|
||||
}
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/mac-rel"
|
||||
}
|
||||
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/win-clang-dbg-x64"
|
||||
}
|
||||
builders {
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/win-clang-rel-x64"
|
||||
}
|
||||
}
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/win-clang-dbg-x86"
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/win-clang-rel-x86"
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/win-msvc-dbg-x64"
|
||||
>
|
||||
builders: <
|
||||
name: "buildbucket/luci.tint.try/win-msvc-rel-x64"
|
||||
>
|
||||
builder_view_only: true
|
||||
>
|
||||
|
|
|
@ -18,7 +18,7 @@ acl_sets {
|
|||
}
|
||||
|
||||
trigger {
|
||||
id: "master-gitiles-trigger"
|
||||
id: "primary-poller"
|
||||
acl_sets: "default"
|
||||
gitiles {
|
||||
repo: "https://dawn.googlesource.com/tint.git"
|
||||
|
|
Loading…
Reference in New Issue