Remove ddl2-* bot runs

With the removal of promise image texture caching here (https://skia-review.googlesource.com/c/skia/+/375201) we no longer need to run these configs.

Change-Id: Id736fc7be517c0df519651957961149f93efb63c
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/376221
Reviewed-by: Weston Tracey <westont@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
This commit is contained in:
Robert Phillips 2021-02-26 08:48:20 -05:00 committed by Skia Commit-Bot
parent 453f143dba
commit b323836cac
2 changed files with 13 additions and 22 deletions

View File

@ -101,13 +101,6 @@ func (b *taskBuilder) dmFlags(internalHardwareLabel string) {
}
return rv
}
prefix := func(slice []string, pfx string) []string {
rv := make([]string, 0, len(slice))
for _, e := range slice {
rv = append(rv, pfx+e)
}
return rv
}
suffix := func(slice []string, sfx string) []string {
rv := make([]string, 0, len(slice))
for _, e := range slice {
@ -471,9 +464,7 @@ func (b *taskBuilder) dmFlags(internalHardwareLabel string) {
}
if b.extraConfig("DDL3") {
// This bot generates the real ddl images for the large skps and the gms
ddlConfigs := suffix(filter(configs, "gl", "vk", "mtl"), "ddl")
ddl2Configs := prefix(filter(configs, "gl", "vk", "mtl"), "ddl2-")
configs = append(ddlConfigs, ddl2Configs...)
configs = suffix(filter(configs, "gl", "vk", "mtl"), "ddl")
args = append(args, "--skpViewportSize", "2048")
args = append(args, "--gpuThreads", "0")
}

File diff suppressed because one or more lines are too long