Reverting manual config changes due to MSVC builder issues
Revert "Remove win toolchain from msvc builds" This reverts commitf6593ffc76
. Revert "Fix validation of manually generated configs" This reverts commitdffb68e49d
. Revert "Update manually generated configs" This reverts commitf3dcbf5c5c
. BUG=tint:693 Change-Id: Iedbbe6e2f162da7a435001d8e45aa8dcdb1d4b9b Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/51620 Auto-Submit: Ryan Harrison <rharrison@chromium.org> Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
This commit is contained in:
parent
f6593ffc76
commit
c9dc951e9e
|
@ -36,9 +36,6 @@ config_groups {
|
||||||
builders {
|
builders {
|
||||||
name: "tint/try/linux-clang-rel-x64"
|
name: "tint/try/linux-clang-rel-x64"
|
||||||
}
|
}
|
||||||
builders {
|
|
||||||
name: "tint/try/linux-clang-rel-x86"
|
|
||||||
}
|
|
||||||
builders {
|
builders {
|
||||||
name: "tint/try/mac-dbg"
|
name: "tint/try/mac-dbg"
|
||||||
}
|
}
|
||||||
|
@ -54,15 +51,6 @@ config_groups {
|
||||||
builders {
|
builders {
|
||||||
name: "tint/try/win-clang-rel-x64"
|
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 {
|
retry_config {
|
||||||
single_quota: 1
|
single_quota: 1
|
||||||
|
|
|
@ -95,10 +95,6 @@ builder_mixins {
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
caches {
|
|
||||||
path: "win_toolchain"
|
|
||||||
name: "win_toolchain"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
builder_mixins {
|
builder_mixins {
|
||||||
name: "mac"
|
name: "mac"
|
||||||
|
@ -132,6 +128,10 @@ buckets {
|
||||||
dimensions: "pool:luci.flex.ci"
|
dimensions: "pool:luci.flex.ci"
|
||||||
# We have 32bit test configurations but some of our toolchain is 64bit (like CIPD)
|
# We have 32bit test configurations but some of our toolchain is 64bit (like CIPD)
|
||||||
dimensions: "cpu:x86-64"
|
dimensions: "cpu:x86-64"
|
||||||
|
caches {
|
||||||
|
path: "win_toolchain"
|
||||||
|
name: "win_toolchain"
|
||||||
|
}
|
||||||
recipe {
|
recipe {
|
||||||
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
|
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
|
||||||
cipd_version: "refs/heads/master"
|
cipd_version: "refs/heads/master"
|
||||||
|
@ -144,28 +144,24 @@ buckets {
|
||||||
builders {
|
builders {
|
||||||
name: "linux-clang-dbg-x64"
|
name: "linux-clang-dbg-x64"
|
||||||
mixins: "linux"
|
mixins: "linux"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "debug"
|
mixins: "debug"
|
||||||
mixins: "x64"
|
mixins: "x64"
|
||||||
}
|
}
|
||||||
builders {
|
builders {
|
||||||
name: "linux-clang-dbg-x86"
|
name: "linux-clang-dbg-x86"
|
||||||
mixins: "linux"
|
mixins: "linux"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "debug"
|
mixins: "debug"
|
||||||
mixins: "x86"
|
mixins: "x86"
|
||||||
}
|
}
|
||||||
builders {
|
builders {
|
||||||
name: "linux-clang-rel-x64"
|
name: "linux-clang-rel-x64"
|
||||||
mixins: "linux"
|
mixins: "linux"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "release"
|
mixins: "release"
|
||||||
mixins: "x64"
|
mixins: "x64"
|
||||||
}
|
}
|
||||||
builders {
|
builders {
|
||||||
name: "linux-clang-rel-x86"
|
name: "linux-clang-rel-x86"
|
||||||
mixins: "linux"
|
mixins: "linux"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "release"
|
mixins: "release"
|
||||||
mixins: "x86"
|
mixins: "x86"
|
||||||
}
|
}
|
||||||
|
@ -174,16 +170,12 @@ buckets {
|
||||||
builders {
|
builders {
|
||||||
name: "mac-dbg"
|
name: "mac-dbg"
|
||||||
mixins: "mac"
|
mixins: "mac"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "debug"
|
mixins: "debug"
|
||||||
mixins: "x64"
|
|
||||||
}
|
}
|
||||||
builders {
|
builders {
|
||||||
name: "mac-rel"
|
name: "mac-rel"
|
||||||
mixins: "mac"
|
mixins: "mac"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "release"
|
mixins: "release"
|
||||||
mixins: "x64"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Windows: test combinations of {clang,msvc}x{release,debug}x{x86,x64}
|
# Windows: test combinations of {clang,msvc}x{release,debug}x{x86,x64}
|
||||||
|
@ -246,6 +238,10 @@ buckets: {
|
||||||
dimensions: "pool:luci.flex.try"
|
dimensions: "pool:luci.flex.try"
|
||||||
# We have 32bit test configurations but some of our toolchain is 64bit (like CIPD)
|
# We have 32bit test configurations but some of our toolchain is 64bit (like CIPD)
|
||||||
dimensions: "cpu:x86-64"
|
dimensions: "cpu:x86-64"
|
||||||
|
caches {
|
||||||
|
path: "win_toolchain"
|
||||||
|
name: "win_toolchain"
|
||||||
|
}
|
||||||
recipe {
|
recipe {
|
||||||
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
|
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
|
||||||
cipd_version: "refs/heads/master"
|
cipd_version: "refs/heads/master"
|
||||||
|
@ -273,7 +269,6 @@ buckets: {
|
||||||
builders {
|
builders {
|
||||||
name: "linux-clang-dbg-x64"
|
name: "linux-clang-dbg-x64"
|
||||||
mixins: "linux"
|
mixins: "linux"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "debug"
|
mixins: "debug"
|
||||||
mixins: "x64"
|
mixins: "x64"
|
||||||
}
|
}
|
||||||
|
@ -281,7 +276,6 @@ buckets: {
|
||||||
builders {
|
builders {
|
||||||
name: "linux-clang-dbg-x86"
|
name: "linux-clang-dbg-x86"
|
||||||
mixins: "linux"
|
mixins: "linux"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "debug"
|
mixins: "debug"
|
||||||
mixins: "x86"
|
mixins: "x86"
|
||||||
}
|
}
|
||||||
|
@ -289,7 +283,6 @@ buckets: {
|
||||||
builders {
|
builders {
|
||||||
name: "linux-clang-rel-x64"
|
name: "linux-clang-rel-x64"
|
||||||
mixins: "linux"
|
mixins: "linux"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "release"
|
mixins: "release"
|
||||||
mixins: "x64"
|
mixins: "x64"
|
||||||
}
|
}
|
||||||
|
@ -297,7 +290,6 @@ buckets: {
|
||||||
builders {
|
builders {
|
||||||
name: "linux-clang-rel-x86"
|
name: "linux-clang-rel-x86"
|
||||||
mixins: "linux"
|
mixins: "linux"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "release"
|
mixins: "release"
|
||||||
mixins: "x86"
|
mixins: "x86"
|
||||||
}
|
}
|
||||||
|
@ -306,17 +298,13 @@ buckets: {
|
||||||
builders {
|
builders {
|
||||||
name: "mac-dbg"
|
name: "mac-dbg"
|
||||||
mixins: "mac"
|
mixins: "mac"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "debug"
|
mixins: "debug"
|
||||||
mixins: "x64"
|
|
||||||
}
|
}
|
||||||
# Actually on the CQ
|
# Actually on the CQ
|
||||||
builders {
|
builders {
|
||||||
name: "mac-rel"
|
name: "mac-rel"
|
||||||
mixins: "mac"
|
mixins: "mac"
|
||||||
mixins: "clang"
|
|
||||||
mixins: "release"
|
mixins: "release"
|
||||||
mixins: "x64"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Actually on the CQ
|
# Actually on the CQ
|
||||||
|
|
|
@ -1,111 +1,102 @@
|
||||||
consoles: <
|
consoles {
|
||||||
id: "ci"
|
id: "ci"
|
||||||
name: "Tint CI Builders"
|
name: "Tint CI Builders"
|
||||||
manifest_name: "REVISION"
|
|
||||||
repo_url: "https://dawn.googlesource.com/tint"
|
repo_url: "https://dawn.googlesource.com/tint"
|
||||||
refs: "regexp:refs/heads/main"
|
refs: "refs/heads/main"
|
||||||
builders: <
|
manifest_name: "REVISION"
|
||||||
|
|
||||||
|
builders {
|
||||||
name: "buildbucket/luci.tint.ci/linux-clang-dbg-x64"
|
name: "buildbucket/luci.tint.ci/linux-clang-dbg-x64"
|
||||||
category: "linux|clang|dbg"
|
category: "linux|clang|dbg"
|
||||||
short_name: "x64"
|
short_name: "x64"
|
||||||
>
|
}
|
||||||
builders: <
|
builders {
|
||||||
name: "buildbucket/luci.tint.ci/linux-clang-rel-x64"
|
|
||||||
category: "linux|clang|rel"
|
|
||||||
short_name: "x64"
|
|
||||||
>
|
|
||||||
builders: <
|
|
||||||
name: "buildbucket/luci.tint.ci/linux-clang-dbg-x86"
|
name: "buildbucket/luci.tint.ci/linux-clang-dbg-x86"
|
||||||
category: "linux|clang|dbg"
|
category: "linux|clang|dbg"
|
||||||
short_name: "x86"
|
short_name: "x86"
|
||||||
>
|
}
|
||||||
builders: <
|
builders {
|
||||||
|
name: "buildbucket/luci.tint.ci/linux-clang-rel-x64"
|
||||||
|
category: "linux|clang|rel"
|
||||||
|
short_name: "x64"
|
||||||
|
}
|
||||||
|
builders {
|
||||||
name: "buildbucket/luci.tint.ci/linux-clang-rel-x86"
|
name: "buildbucket/luci.tint.ci/linux-clang-rel-x86"
|
||||||
category: "linux|clang|rel"
|
category: "linux|clang|rel"
|
||||||
short_name: "x86"
|
short_name: "x86"
|
||||||
>
|
}
|
||||||
builders: <
|
|
||||||
|
builders {
|
||||||
name: "buildbucket/luci.tint.ci/mac-dbg"
|
name: "buildbucket/luci.tint.ci/mac-dbg"
|
||||||
category: "mac"
|
category: "mac"
|
||||||
short_name: "dbg"
|
short_name: "dbg"
|
||||||
>
|
}
|
||||||
builders: <
|
builders {
|
||||||
name: "buildbucket/luci.tint.ci/mac-rel"
|
name: "buildbucket/luci.tint.ci/mac-rel"
|
||||||
category: "mac"
|
category: "mac"
|
||||||
short_name: "rel"
|
short_name: "rel"
|
||||||
>
|
}
|
||||||
builders: <
|
|
||||||
|
builders {
|
||||||
name: "buildbucket/luci.tint.ci/win-clang-dbg-x64"
|
name: "buildbucket/luci.tint.ci/win-clang-dbg-x64"
|
||||||
category: "win|clang|dbg"
|
category: "win|clang|dbg"
|
||||||
short_name: "x64"
|
short_name: "x64"
|
||||||
>
|
}
|
||||||
builders: <
|
builders {
|
||||||
name: "buildbucket/luci.tint.ci/win-clang-rel-x64"
|
|
||||||
category: "win|clang|rel"
|
|
||||||
short_name: "x64"
|
|
||||||
>
|
|
||||||
builders: <
|
|
||||||
name: "buildbucket/luci.tint.ci/win-clang-dbg-x86"
|
name: "buildbucket/luci.tint.ci/win-clang-dbg-x86"
|
||||||
category: "win|clang|dbg"
|
category: "win|clang|dbg"
|
||||||
short_name: "x86"
|
short_name: "x86"
|
||||||
>
|
}
|
||||||
builders: <
|
builders {
|
||||||
|
name: "buildbucket/luci.tint.ci/win-clang-rel-x64"
|
||||||
|
category: "win|clang|rel"
|
||||||
|
short_name: "x64"
|
||||||
|
}
|
||||||
|
builders {
|
||||||
name: "buildbucket/luci.tint.ci/win-clang-rel-x86"
|
name: "buildbucket/luci.tint.ci/win-clang-rel-x86"
|
||||||
category: "win|clang|rel"
|
category: "win|clang|rel"
|
||||||
short_name: "x86"
|
short_name: "x86"
|
||||||
>
|
}
|
||||||
builders: <
|
builders {
|
||||||
name: "buildbucket/luci.tint.ci/win-msvc-dbg-x64"
|
name: "buildbucket/luci.tint.ci/win-msvc-dbg-x64"
|
||||||
category: "win|msvc"
|
category: "win|msvc"
|
||||||
short_name: "dbg"
|
short_name: "dbg"
|
||||||
>
|
}
|
||||||
builders: <
|
builders {
|
||||||
name: "buildbucket/luci.tint.ci/win-msvc-rel-x64"
|
name: "buildbucket/luci.tint.ci/win-msvc-rel-x64"
|
||||||
category: "win|msvc"
|
category: "win|msvc"
|
||||||
short_name: "rel"
|
short_name: "rel"
|
||||||
>
|
}
|
||||||
>
|
}
|
||||||
consoles: <
|
|
||||||
|
consoles {
|
||||||
id: "try"
|
id: "try"
|
||||||
name: "Tint try Builders"
|
name: "Tint try Builders"
|
||||||
builders: <
|
manifest_name: "PATCHED"
|
||||||
name: "buildbucket/luci.tint.try/presubmit"
|
|
||||||
>
|
|
||||||
builders: <
|
|
||||||
name: "buildbucket/luci.tint.try/linux-clang-dbg-x64"
|
|
||||||
>
|
|
||||||
builders: <
|
|
||||||
name: "buildbucket/luci.tint.try/linux-clang-rel-x64"
|
|
||||||
>
|
|
||||||
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: <
|
|
||||||
name: "buildbucket/luci.tint.try/mac-rel"
|
|
||||||
>
|
|
||||||
builders: <
|
|
||||||
name: "buildbucket/luci.tint.try/win-clang-dbg-x64"
|
|
||||||
>
|
|
||||||
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
|
builder_view_only: true
|
||||||
>
|
|
||||||
|
builders {
|
||||||
|
name: "buildbucket/luci.tint.try/presubmit"
|
||||||
|
}
|
||||||
|
|
||||||
|
builders {
|
||||||
|
name: "buildbucket/luci.tint.try/linux-clang-dbg-x64"
|
||||||
|
}
|
||||||
|
builders {
|
||||||
|
name: "buildbucket/luci.tint.try/linux-clang-rel-x64"
|
||||||
|
}
|
||||||
|
|
||||||
|
builders {
|
||||||
|
name: "buildbucket/luci.tint.try/mac-dbg"
|
||||||
|
}
|
||||||
|
builders {
|
||||||
|
name: "buildbucket/luci.tint.try/mac-rel"
|
||||||
|
}
|
||||||
|
|
||||||
|
builders {
|
||||||
|
name: "buildbucket/luci.tint.try/win-clang-dbg-x64"
|
||||||
|
}
|
||||||
|
builders {
|
||||||
|
name: "buildbucket/luci.tint.try/win-clang-rel-x64"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -18,7 +18,7 @@ acl_sets {
|
||||||
}
|
}
|
||||||
|
|
||||||
trigger {
|
trigger {
|
||||||
id: "primary-poller"
|
id: "master-gitiles-trigger"
|
||||||
acl_sets: "default"
|
acl_sets: "default"
|
||||||
gitiles {
|
gitiles {
|
||||||
repo: "https://dawn.googlesource.com/tint.git"
|
repo: "https://dawn.googlesource.com/tint.git"
|
||||||
|
|
Loading…
Reference in New Issue