diff options
author | Eric Boren <borenet@google.com> | 2017-12-07 14:54:05 +0000 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-12-07 14:54:11 +0000 |
commit | 9d78afdd3d873b63dfbba17f9039a64cae62e3b8 (patch) | |
tree | 3053af635ab54c577d7eca59426271b3e0347e22 /infra/bots | |
parent | 8ba13f63020b2301d2a97392804d14e5e6f7b2b2 (diff) |
Revert "[infra] Move commands from isolates to gen_tasks.go"
This reverts commit 66db75da67fb4c75207c2e495765e1e74584e3b1.
Reason for revert: Breaking PDFium/Flutter
Original change's description:
> [infra] Move commands from isolates to gen_tasks.go
>
> This has the side effect of bundling recipes for all tasks,
> which will be required anyway to run recipes in the future.
>
> Bug: skia:7050
> Change-Id: Ia30a95c750f2a237a8bf60263b2981682673c043
> Reviewed-on: https://skia-review.googlesource.com/81300
> Commit-Queue: Eric Boren <borenet@google.com>
> Reviewed-by: Kevin Lubick <kjlubick@google.com>
TBR=borenet@google.com,bungeman@google.com,rmistry@google.com,kjlubick@google.com
Change-Id: I38e00294f098ac91285a5cc464414654fc79a9e9
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: skia:7050
Reviewed-on: https://skia-review.googlesource.com/81741
Reviewed-by: Eric Boren <borenet@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
Diffstat (limited to 'infra/bots')
39 files changed, 8091 insertions, 10575 deletions
diff --git a/infra/bots/bundle_recipes.isolate b/infra/bots/bundle_recipes.isolate new file mode 100644 index 0000000000..3faa6f70a1 --- /dev/null +++ b/infra/bots/bundle_recipes.isolate @@ -0,0 +1,14 @@ +{ + 'includes': [ + 'infrabots.isolate', + ], + 'variables': { + 'command': [ + 'python', 'recipes.py', '--package', '../config/recipes.cfg', 'run', '--timestamps', + ], + 'files': [ + '../../../.gclient', + '../config/recipes.cfg', + ], + }, +} diff --git a/infra/bots/bundle_recipes.sh b/infra/bots/bundle_recipes.sh deleted file mode 100755 index 989ec79661..0000000000 --- a/infra/bots/bundle_recipes.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -# Copyright 2017 Google Inc. -# -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -set -x -e - -cd skia -git init -git add . -git commit -m "Commit Recipes" -python infra/bots/recipes.py bundle --destination ${1}/recipe_bundle diff --git a/infra/bots/compile_skia.isolate b/infra/bots/compile_skia.isolate new file mode 100644 index 0000000000..767fa3af9e --- /dev/null +++ b/infra/bots/compile_skia.isolate @@ -0,0 +1,10 @@ +{ + 'includes': [ + 'swarm_recipe.isolate', + ], + 'variables': { + 'files': [ + '../../../.gclient', + ], + }, +} diff --git a/infra/bots/coverage_skia.isolate b/infra/bots/coverage_skia.isolate new file mode 100644 index 0000000000..856e2a660a --- /dev/null +++ b/infra/bots/coverage_skia.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'skia_repo.isolate', + 'test_skia.isolate', + ], +} diff --git a/infra/bots/ct_skps_skia.isolate b/infra/bots/ct_skps_skia.isolate new file mode 100644 index 0000000000..4172bae45b --- /dev/null +++ b/infra/bots/ct_skps_skia.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'skia_repo.isolate', + 'swarm_recipe.isolate', + ], +} diff --git a/infra/bots/empty.isolate b/infra/bots/empty.isolate deleted file mode 100644 index 0967ef424b..0000000000 --- a/infra/bots/empty.isolate +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/infra/bots/gen_tasks.go b/infra/bots/gen_tasks.go index 18b4fa8083..c674d263bf 100644 --- a/infra/bots/gen_tasks.go +++ b/infra/bots/gen_tasks.go @@ -77,26 +77,16 @@ var ( jobNameSchema *JobNameSchema // Git 2.13. - CIPD_PKGS_GIT = []*specs.CipdPackage{ - &specs.CipdPackage{ - Name: "infra/git/${platform}", - Path: "cipd_bin_packages", - Version: "version:2.14.1.chromium10", - }, - &specs.CipdPackage{ - Name: "infra/tools/git/${platform}", - Path: "cipd_bin_packages", - Version: "git_revision:fa7a52f4741f5e04bba0dfccc9b8456dc572c60b", - }, - &specs.CipdPackage{ - Name: "infra/tools/luci/git-credential-luci/${platform}", - Path: "cipd_bin_packages", - Version: "git_revision:fa7a52f4741f5e04bba0dfccc9b8456dc572c60b", - }, + cipdGit1 = &specs.CipdPackage{ + Name: fmt.Sprintf("infra/git/${platform}"), + Path: "git", + Version: fmt.Sprintf("version:2.13.0.chromium9"), + } + cipdGit2 = &specs.CipdPackage{ + Name: fmt.Sprintf("infra/tools/git/${platform}"), + Path: "git", + Version: fmt.Sprintf("git_revision:a78b5f3658c0578a017db48df97d20ac09822bcd"), } - - RECIPE_BUNDLE_UNIX = "recipe_bundle/recipes" - RECIPE_BUNDLE_WIN = "recipe_bundle/recipes.bat" // Flags. builderNameSchemaFile = flag.String("builder_name_schema", "", "Path to the builder_name_schema.json file. If not specified, uses infra/bots/recipe_modules/builder_name_schema/builder_name_schema.json from this repo.") @@ -374,14 +364,6 @@ func defaultSwarmDimensions(parts map[string]string) []string { return rv } -// recipes returns the path to the "recipes" executable. -func recipes(parts map[string]string) string { - if strings.Contains(parts["os"], "Win") { - return RECIPE_BUNDLE_WIN - } - return RECIPE_BUNDLE_UNIX -} - // relpath returns the relative path to the given file from the config file. func relpath(f string) string { _, filename, _, _ := runtime.Caller(0) @@ -400,15 +382,14 @@ func relpath(f string) string { // bundleRecipes generates the task to bundle and isolate the recipes. func bundleRecipes(b *specs.TasksCfgBuilder) string { b.MustAddTask(BUNDLE_RECIPES_NAME, &specs.TaskSpec{ - CipdPackages: CIPD_PKGS_GIT, - Command: []string{ - "/bin/bash", "skia/infra/bots/bundle_recipes.sh", specs.PLACEHOLDER_ISOLATED_OUTDIR, - }, - Dimensions: linuxGceDimensions(), - EnvPrefixes: map[string][]string{ - "PATH": []string{"cipd_bin_packages", "cipd_bin_packages/bin"}, + CipdPackages: []*specs.CipdPackage{cipdGit1, cipdGit2}, + Dimensions: linuxGceDimensions(), + ExtraArgs: []string{ + "--workdir", "../../..", "bundle_recipes", + fmt.Sprintf("buildername=%s", BUNDLE_RECIPES_NAME), + fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), }, - Isolate: relpath("swarm_recipe.isolate"), + Isolate: relpath("bundle_recipes.isolate"), Priority: 0.7, }) return BUNDLE_RECIPES_NAME @@ -422,47 +403,45 @@ func useBundledRecipes(parts map[string]string) bool { } type isolateAssetCfg struct { - cipdPkg string - path string + isolateFile string + cipdPkg string } var ISOLATE_ASSET_MAPPING = map[string]isolateAssetCfg{ ISOLATE_SKIMAGE_NAME: { - cipdPkg: "skimage", - path: "skimage", + isolateFile: "isolate_skimage.isolate", + cipdPkg: "skimage", }, ISOLATE_SKP_NAME: { - cipdPkg: "skp", - path: "skp", + isolateFile: "isolate_skp.isolate", + cipdPkg: "skp", }, ISOLATE_SVG_NAME: { - cipdPkg: "svg", - path: "svg", + isolateFile: "isolate_svg.isolate", + cipdPkg: "svg", }, ISOLATE_NDK_LINUX_NAME: { - cipdPkg: "android_ndk_linux", - path: "android_ndk_linux", + isolateFile: "isolate_ndk_linux.isolate", + cipdPkg: "android_ndk_linux", }, ISOLATE_WIN_TOOLCHAIN_NAME: { - cipdPkg: "win_toolchain", - path: "t", + isolateFile: "isolate_win_toolchain.isolate", + cipdPkg: "win_toolchain", }, ISOLATE_WIN_VULKAN_SDK_NAME: { - cipdPkg: "win_vulkan_sdk", - path: "win_vulkan_sdk", + isolateFile: "isolate_win_vulkan_sdk.isolate", + cipdPkg: "win_vulkan_sdk", }, } -// isolateCIPDAsset generates a task to isolate the given CIPD asset. +// bundleRecipes generates the task to bundle and isolate the recipes. func isolateCIPDAsset(b *specs.TasksCfgBuilder, name string) string { - asset := ISOLATE_ASSET_MAPPING[name] b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{ - b.MustGetCipdPackageFromAsset(asset.cipdPkg), + b.MustGetCipdPackageFromAsset(ISOLATE_ASSET_MAPPING[name].cipdPkg), }, - Command: []string{"/bin/cp", "-rL", asset.path, "${ISOLATED_OUTDIR}"}, Dimensions: linuxGceDimensions(), - Isolate: "empty.isolate", + Isolate: relpath(ISOLATE_ASSET_MAPPING[name].isolateFile), Priority: 0.7, }) return name @@ -497,7 +476,7 @@ func getIsolatedCIPDDeps(parts map[string]string) []string { func compile(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { // Collect the necessary CIPD packages. pkgs := []*specs.CipdPackage{} - deps := []string{BUNDLE_RECIPES_NAME} + deps := []string{} // Android bots require a toolchain. if strings.Contains(name, "Android") { @@ -546,9 +525,10 @@ func compile(b *specs.TasksCfgBuilder, name string, parts map[string]string) str // Add the task. b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: pkgs, - Command: []string{ - recipes(parts), "run", "--timestamps", - "--workdir", ".", "compile", + Dimensions: dimensions, + Dependencies: deps, + ExtraArgs: []string{ + "--workdir", "../../..", "compile", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -558,10 +538,8 @@ func compile(b *specs.TasksCfgBuilder, name string, parts map[string]string) str fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Dependencies: deps, - Dimensions: dimensions, - Isolate: relpath("swarm_recipe.isolate"), - Priority: 0.8, + Isolate: relpath("compile_skia.isolate"), + Priority: 0.8, }) // All compile tasks are runnable as their own Job. Assert that the Job // is listed in JOBS. @@ -574,12 +552,13 @@ func compile(b *specs.TasksCfgBuilder, name string, parts map[string]string) str // recreateSKPs generates a RecreateSKPs task. Returns the name of the last // task in the generated chain of tasks, which the Job should add as a // dependency. -func recreateSKPs(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { +func recreateSKPs(b *specs.TasksCfgBuilder, name string) string { b.MustAddTask(name, &specs.TaskSpec{ - CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("go")}, - Command: []string{ - recipes(parts), "run", "--timestamps", - "--workdir", ".", "recreate_skps", + CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("go")}, + Dimensions: linuxGceDimensions(), + ExecutionTimeout: 4 * time.Hour, + ExtraArgs: []string{ + "--workdir", "../../..", "recreate_skps", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -589,12 +568,9 @@ func recreateSKPs(b *specs.TasksCfgBuilder, name string, parts map[string]string fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Dependencies: []string{BUNDLE_RECIPES_NAME}, - Dimensions: linuxGceDimensions(), - ExecutionTimeout: 4 * time.Hour, - IoTimeout: 40 * time.Minute, - Isolate: relpath("swarm_recipe.isolate"), - Priority: 0.8, + IoTimeout: 40 * time.Minute, + Isolate: relpath("compile_skia.isolate"), + Priority: 0.8, }) return name } @@ -602,12 +578,12 @@ func recreateSKPs(b *specs.TasksCfgBuilder, name string, parts map[string]string // updateMetaConfig generates a UpdateMetaConfig task. Returns the name of the // last task in the generated chain of tasks, which the Job should add as a // dependency. -func updateMetaConfig(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { +func updateMetaConfig(b *specs.TasksCfgBuilder, name string) string { b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{}, - Command: []string{ - recipes(parts), "run", "--timestamps", - "--workdir", ".", "update_meta_config", + Dimensions: linuxGceDimensions(), + ExtraArgs: []string{ + "--workdir", "../../..", "update_meta_config", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -617,22 +593,24 @@ func updateMetaConfig(b *specs.TasksCfgBuilder, name string, parts map[string]st fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Dependencies: []string{BUNDLE_RECIPES_NAME}, - Dimensions: linuxGceDimensions(), - Isolate: relpath("swarm_recipe.isolate"), - Priority: 0.8, + Isolate: relpath("meta_config.isolate"), + Priority: 0.8, }) return name } // ctSKPs generates a CT SKPs task. Returns the name of the last task in the // generated chain of tasks, which the Job should add as a dependency. -func ctSKPs(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { +func ctSKPs(b *specs.TasksCfgBuilder, name string) string { b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{}, - Command: []string{ - recipes(parts), "run", "--timestamps", - "--workdir", ".", "ct_skps", + Dimensions: []string{ + "pool:SkiaCT", + fmt.Sprintf("os:%s", DEFAULT_OS_LINUX_GCE), + }, + ExecutionTimeout: 24 * time.Hour, + ExtraArgs: []string{ + "--workdir", "../../..", "ct_skps", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -642,27 +620,21 @@ func ctSKPs(b *specs.TasksCfgBuilder, name string, parts map[string]string) stri fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Dependencies: []string{BUNDLE_RECIPES_NAME}, - Dimensions: []string{ - "pool:SkiaCT", - fmt.Sprintf("os:%s", DEFAULT_OS_LINUX_GCE), - }, - ExecutionTimeout: 24 * time.Hour, - IoTimeout: time.Hour, - Isolate: relpath("skia_repo.isolate"), - Priority: 0.8, + IoTimeout: time.Hour, + Isolate: relpath("ct_skps_skia.isolate"), + Priority: 0.8, }) return name } // checkGeneratedFiles verifies that no generated SKSL files have been edited // by hand. -func checkGeneratedFiles(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { +func checkGeneratedFiles(b *specs.TasksCfgBuilder, name string) string { b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{}, - Command: []string{ - recipes(parts), "run", "--timestamps", - "--workdir", ".", "check_generated_files", + Dimensions: linuxGceDimensions(), + ExtraArgs: []string{ + "--workdir", "../../..", "check_generated_files", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -672,22 +644,21 @@ func checkGeneratedFiles(b *specs.TasksCfgBuilder, name string, parts map[string fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Dependencies: []string{BUNDLE_RECIPES_NAME}, - Dimensions: linuxGceDimensions(), - Isolate: relpath("swarm_recipe.isolate"), - Priority: 0.8, + Isolate: relpath("compile_skia.isolate"), + Priority: 0.8, }) return name } // housekeeper generates a Housekeeper task. Returns the name of the last task // in the generated chain of tasks, which the Job should add as a dependency. -func housekeeper(b *specs.TasksCfgBuilder, name, compileTaskName string, parts map[string]string) string { +func housekeeper(b *specs.TasksCfgBuilder, name, compileTaskName string) string { b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("go")}, - Command: []string{ - recipes(parts), "run", "--timestamps", - "--workdir", ".", "housekeeper", + Dependencies: []string{compileTaskName}, + Dimensions: linuxGceDimensions(), + ExtraArgs: []string{ + "--workdir", "../../..", "housekeeper", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -697,21 +668,20 @@ func housekeeper(b *specs.TasksCfgBuilder, name, compileTaskName string, parts m fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Dependencies: []string{compileTaskName, BUNDLE_RECIPES_NAME}, - Dimensions: linuxGceDimensions(), - Isolate: relpath("swarm_recipe.isolate"), - Priority: 0.8, + Isolate: relpath("housekeeper_skia.isolate"), + Priority: 0.8, }) return name } // infra generates an infra_tests task. Returns the name of the last task in the // generated chain of tasks, which the Job should add as a dependency. -func infra(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { +func infra(b *specs.TasksCfgBuilder, name string) string { b.MustAddTask(name, &specs.TaskSpec{ - Command: []string{ - recipes(parts), "run", "--timestamps", - "--workdir", ".", "infra", + CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("go")}, + Dimensions: linuxGceDimensions(), + ExtraArgs: []string{ + "--workdir", "../../..", "infra", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -721,11 +691,8 @@ func infra(b *specs.TasksCfgBuilder, name string, parts map[string]string) strin fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("go")}, - Dependencies: []string{BUNDLE_RECIPES_NAME}, - Dimensions: linuxGceDimensions(), - Isolate: relpath("swarm_recipe.isolate"), - Priority: 0.8, + Isolate: relpath("infra_skia.isolate"), + Priority: 0.8, }) return name } @@ -735,9 +702,9 @@ func infra(b *specs.TasksCfgBuilder, name string, parts map[string]string) strin func calmbench(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { s := &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("clang_linux")}, - Command: []string{ - recipes(parts), "run", "--timestamps", - "--workdir", ".", "calmbench", + Dimensions: swarmDimensions(parts), + ExtraArgs: []string{ + "--workdir", "../../..", "calmbench", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -747,9 +714,8 @@ func calmbench(b *specs.TasksCfgBuilder, name string, parts map[string]string) s fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Dimensions: swarmDimensions(parts), - Isolate: relpath("swarm_recipe.isolate"), - Priority: 0.8, + Isolate: relpath("infra_skia.isolate"), + Priority: 0.8, } s.Dependencies = append(s.Dependencies, ISOLATE_SKP_NAME, ISOLATE_SVG_NAME) @@ -760,9 +726,10 @@ func calmbench(b *specs.TasksCfgBuilder, name string, parts map[string]string) s if strings.Contains(name, "Release") && doUpload(name) { uploadName := fmt.Sprintf("%s%s%s", PREFIX_UPLOAD, jobNameSchema.Sep, name) b.MustAddTask(uploadName, &specs.TaskSpec{ - Command: []string{ - RECIPE_BUNDLE_UNIX, "run", "--timestamps", - "--workdir", ".", "upload_calmbench_results", + Dependencies: []string{name}, + Dimensions: linuxGceDimensions(), + ExtraArgs: []string{ + "--workdir", "../../..", "upload_calmbench_results", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -773,10 +740,9 @@ func calmbench(b *specs.TasksCfgBuilder, name string, parts map[string]string) s fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), fmt.Sprintf("gs_bucket=%s", CONFIG.GsBucketCalm), }, - Dependencies: []string{name}, - Dimensions: linuxGceDimensions(), - Isolate: relpath("swarm_recipe.isolate"), - Priority: 0.8, + // We're using the same isolate as upload_nano_results + Isolate: relpath("upload_nano_results.isolate"), + Priority: 0.8, }) return uploadName } @@ -802,10 +768,13 @@ func doUpload(name string) bool { // generated chain of tasks, which the Job should add as a dependency. func test(b *specs.TasksCfgBuilder, name string, parts map[string]string, compileTaskName string, pkgs []*specs.CipdPackage) string { s := &specs.TaskSpec{ - CipdPackages: pkgs, - Command: []string{ - recipes(parts), "run", "--timestamps", - "--workdir", ".", "test", + CipdPackages: pkgs, + Dependencies: []string{compileTaskName}, + Dimensions: swarmDimensions(parts), + ExecutionTimeout: 4 * time.Hour, + Expiration: 20 * time.Hour, + ExtraArgs: []string{ + "--workdir", "../../..", "test", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildbucket_build_id=%s", specs.PLACEHOLDER_BUILDBUCKET_BUILD_ID), fmt.Sprintf("buildername=%s", name), @@ -816,14 +785,18 @@ func test(b *specs.TasksCfgBuilder, name string, parts map[string]string, compil fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Dependencies: []string{compileTaskName, BUNDLE_RECIPES_NAME}, - Dimensions: swarmDimensions(parts), - ExecutionTimeout: 4 * time.Hour, - Expiration: 20 * time.Hour, - IoTimeout: 40 * time.Minute, - Isolate: relpath("test_skia_bundled.isolate"), - MaxAttempts: 1, - Priority: 0.8, + IoTimeout: 40 * time.Minute, + Isolate: relpath("test_skia.isolate"), + MaxAttempts: 1, + Priority: 0.8, + } + if useBundledRecipes(parts) { + s.Dependencies = append(s.Dependencies, BUNDLE_RECIPES_NAME) + if strings.Contains(parts["os"], "Win") { + s.Isolate = relpath("test_skia_bundled_win.isolate") + } else { + s.Isolate = relpath("test_skia_bundled_unix.isolate") + } } if deps := getIsolatedCIPDDeps(parts); len(deps) > 0 { s.Dependencies = append(s.Dependencies, deps...) @@ -851,9 +824,10 @@ func test(b *specs.TasksCfgBuilder, name string, parts map[string]string, compil if doUpload(name) { uploadName := fmt.Sprintf("%s%s%s", PREFIX_UPLOAD, jobNameSchema.Sep, name) b.MustAddTask(uploadName, &specs.TaskSpec{ - Command: []string{ - RECIPE_BUNDLE_UNIX, "run", "--timestamps", - "--workdir", ".", "upload_dm_results", + Dependencies: []string{name}, + Dimensions: linuxGceDimensions(), + ExtraArgs: []string{ + "--workdir", "../../..", "upload_dm_results", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -864,10 +838,8 @@ func test(b *specs.TasksCfgBuilder, name string, parts map[string]string, compil fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), fmt.Sprintf("gs_bucket=%s", CONFIG.GsBucketGm), }, - Dependencies: []string{name, BUNDLE_RECIPES_NAME}, - Dimensions: linuxGceDimensions(), - Isolate: relpath("swarm_recipe.isolate"), - Priority: 0.8, + Isolate: relpath("upload_dm_results.isolate"), + Priority: 0.8, }) return uploadName } @@ -892,10 +864,13 @@ func coverage(b *specs.TasksCfgBuilder, name string, parts map[string]string, co for i := 0; i < shards; i++ { n := strings.Replace(name, tf, fmt.Sprintf("shard_%02d_%02d", i, shards), 1) s := &specs.TaskSpec{ - CipdPackages: pkgs, - Command: []string{ - recipes(parts), "run", "--timestamps", - "--workdir", ".", "test", + CipdPackages: pkgs, + Dependencies: []string{compileTaskName}, + Dimensions: swarmDimensions(parts), + ExecutionTimeout: 4 * time.Hour, + Expiration: 20 * time.Hour, + ExtraArgs: []string{ + "--workdir", "../../..", "test", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", n), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -905,14 +880,18 @@ func coverage(b *specs.TasksCfgBuilder, name string, parts map[string]string, co fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Dependencies: []string{compileTaskName, BUNDLE_RECIPES_NAME}, - Dimensions: swarmDimensions(parts), - ExecutionTimeout: 4 * time.Hour, - Expiration: 20 * time.Hour, - IoTimeout: 40 * time.Minute, - Isolate: relpath("test_skia_bundled.isolate"), - MaxAttempts: 1, - Priority: 0.8, + IoTimeout: 40 * time.Minute, + Isolate: relpath("test_skia.isolate"), + MaxAttempts: 1, + Priority: 0.8, + } + if useBundledRecipes(parts) { + s.Dependencies = append(s.Dependencies, BUNDLE_RECIPES_NAME) + if strings.Contains(parts["os"], "Win") { + s.Isolate = relpath("test_skia_bundled_win.isolate") + } else { + s.Isolate = relpath("test_skia_bundled_unix.isolate") + } } if deps := getIsolatedCIPDDeps(parts); len(deps) > 0 { s.Dependencies = append(s.Dependencies, deps...) @@ -935,9 +914,8 @@ func coverage(b *specs.TasksCfgBuilder, name string, parts map[string]string, co Dependencies: deps, Dimensions: linuxGceDimensions(), CipdPackages: pkgs, - Command: []string{ - RECIPE_BUNDLE_UNIX, "run", "--timestamps", - "--workdir", ".", "upload_coverage_results", + ExtraArgs: []string{ + "--workdir", "../../..", "upload_coverage_results", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -948,7 +926,7 @@ func coverage(b *specs.TasksCfgBuilder, name string, parts map[string]string, co fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), fmt.Sprintf("gs_bucket=%s", CONFIG.GsBucketCoverage), }, - Isolate: relpath("swarm_recipe.isolate"), + Isolate: relpath("upload_coverage_results.isolate"), Priority: 0.8, }) return uploadName @@ -958,16 +936,32 @@ func coverage(b *specs.TasksCfgBuilder, name string, parts map[string]string, co // generated chain of tasks, which the Job should add as a dependency. func perf(b *specs.TasksCfgBuilder, name string, parts map[string]string, compileTaskName string, pkgs []*specs.CipdPackage) string { recipe := "perf" - isolate := relpath("perf_skia_bundled.isolate") + isolate := relpath("perf_skia.isolate") if strings.Contains(parts["extra_config"], "Skpbench") { recipe = "skpbench" - isolate = relpath("skpbench_skia_bundled.isolate") + isolate = relpath("skpbench_skia.isolate") + if useBundledRecipes(parts) { + if strings.Contains(parts["os"], "Win") { + isolate = relpath("skpbench_skia_bundled_win.isolate") + } else { + isolate = relpath("skpbench_skia_bundled_unix.isolate") + } + } + } else if useBundledRecipes(parts) { + if strings.Contains(parts["os"], "Win") { + isolate = relpath("perf_skia_bundled_win.isolate") + } else { + isolate = relpath("perf_skia_bundled_unix.isolate") + } } s := &specs.TaskSpec{ - CipdPackages: pkgs, - Command: []string{ - recipes(parts), "run", "--timestamps", - "--workdir", ".", recipe, + CipdPackages: pkgs, + Dependencies: []string{compileTaskName}, + Dimensions: swarmDimensions(parts), + ExecutionTimeout: 4 * time.Hour, + Expiration: 20 * time.Hour, + ExtraArgs: []string{ + "--workdir", "../../..", recipe, fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -977,14 +971,13 @@ func perf(b *specs.TasksCfgBuilder, name string, parts map[string]string, compil fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Dependencies: []string{compileTaskName, BUNDLE_RECIPES_NAME}, - Dimensions: swarmDimensions(parts), - ExecutionTimeout: 4 * time.Hour, - Expiration: 20 * time.Hour, - IoTimeout: 40 * time.Minute, - Isolate: isolate, - MaxAttempts: 1, - Priority: 0.8, + IoTimeout: 40 * time.Minute, + Isolate: isolate, + MaxAttempts: 1, + Priority: 0.8, + } + if useBundledRecipes(parts) { + s.Dependencies = append(s.Dependencies, BUNDLE_RECIPES_NAME) } if deps := getIsolatedCIPDDeps(parts); len(deps) > 0 { s.Dependencies = append(s.Dependencies, deps...) @@ -1012,9 +1005,10 @@ func perf(b *specs.TasksCfgBuilder, name string, parts map[string]string, compil if strings.Contains(name, "Release") && doUpload(name) { uploadName := fmt.Sprintf("%s%s%s", PREFIX_UPLOAD, jobNameSchema.Sep, name) b.MustAddTask(uploadName, &specs.TaskSpec{ - Command: []string{ - RECIPE_BUNDLE_UNIX, "run", "--timestamps", - "--workdir", ".", "upload_nano_results", + Dependencies: []string{name}, + Dimensions: linuxGceDimensions(), + ExtraArgs: []string{ + "--workdir", "../../..", "upload_nano_results", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -1025,10 +1019,8 @@ func perf(b *specs.TasksCfgBuilder, name string, parts map[string]string, compil fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), fmt.Sprintf("gs_bucket=%s", CONFIG.GsBucketNano), }, - Dependencies: []string{name, BUNDLE_RECIPES_NAME}, - Dimensions: linuxGceDimensions(), - Isolate: relpath("swarm_recipe.isolate"), - Priority: 0.8, + Isolate: relpath("upload_nano_results.isolate"), + Priority: 0.8, }) return uploadName } @@ -1056,22 +1048,22 @@ func process(b *specs.TasksCfgBuilder, name string) { // RecreateSKPs. if strings.Contains(name, "RecreateSKPs") { - deps = append(deps, recreateSKPs(b, name, parts)) + deps = append(deps, recreateSKPs(b, name)) } // UpdateMetaConfig bot. if strings.Contains(name, "UpdateMetaConfig") { - deps = append(deps, updateMetaConfig(b, name, parts)) + deps = append(deps, updateMetaConfig(b, name)) } // CT bots. if strings.Contains(name, "-CT_") { - deps = append(deps, ctSKPs(b, name, parts)) + deps = append(deps, ctSKPs(b, name)) } // Infra tests. if name == "Housekeeper-PerCommit-InfraTests" { - deps = append(deps, infra(b, name, parts)) + deps = append(deps, infra(b, name)) } // Compile bots. @@ -1104,10 +1096,10 @@ func process(b *specs.TasksCfgBuilder, name string) { // Housekeepers. if name == "Housekeeper-PerCommit" { - deps = append(deps, housekeeper(b, name, compileTaskName, parts)) + deps = append(deps, housekeeper(b, name, compileTaskName)) } if name == "Housekeeper-PerCommit-CheckGeneratedFiles" { - deps = append(deps, checkGeneratedFiles(b, name, parts)) + deps = append(deps, checkGeneratedFiles(b, name)) } // Common assets needed by the remaining bots. diff --git a/infra/bots/housekeeper_skia.isolate b/infra/bots/housekeeper_skia.isolate new file mode 100644 index 0000000000..767fa3af9e --- /dev/null +++ b/infra/bots/housekeeper_skia.isolate @@ -0,0 +1,10 @@ +{ + 'includes': [ + 'swarm_recipe.isolate', + ], + 'variables': { + 'files': [ + '../../../.gclient', + ], + }, +} diff --git a/infra/bots/infra_skia.isolate b/infra/bots/infra_skia.isolate new file mode 100644 index 0000000000..767fa3af9e --- /dev/null +++ b/infra/bots/infra_skia.isolate @@ -0,0 +1,10 @@ +{ + 'includes': [ + 'swarm_recipe.isolate', + ], + 'variables': { + 'files': [ + '../../../.gclient', + ], + }, +} diff --git a/infra/bots/infrabots.isolate b/infra/bots/infrabots.isolate index bfe028a53d..b08e836910 100644 --- a/infra/bots/infrabots.isolate +++ b/infra/bots/infrabots.isolate @@ -1,6 +1,7 @@ { 'variables': { 'files': [ + '../../tools/valgrind.supp', './', ], }, diff --git a/infra/bots/isolate_ndk_linux.isolate b/infra/bots/isolate_ndk_linux.isolate new file mode 100644 index 0000000000..c53a3ed4ba --- /dev/null +++ b/infra/bots/isolate_ndk_linux.isolate @@ -0,0 +1,7 @@ +{ + 'variables': { + 'command': [ + '/bin/cp', '-rL', 'android_ndk_linux', '${ISOLATED_OUTDIR}', + ], + }, +} diff --git a/infra/bots/isolate_skimage.isolate b/infra/bots/isolate_skimage.isolate new file mode 100644 index 0000000000..36066be799 --- /dev/null +++ b/infra/bots/isolate_skimage.isolate @@ -0,0 +1,7 @@ +{ + 'variables': { + 'command': [ + '/bin/cp', '-rL', 'skimage', '${ISOLATED_OUTDIR}', + ], + }, +} diff --git a/infra/bots/isolate_skp.isolate b/infra/bots/isolate_skp.isolate new file mode 100644 index 0000000000..d632dffeab --- /dev/null +++ b/infra/bots/isolate_skp.isolate @@ -0,0 +1,7 @@ +{ + 'variables': { + 'command': [ + '/bin/cp', '-rL', 'skp', '${ISOLATED_OUTDIR}', + ], + }, +} diff --git a/infra/bots/isolate_svg.isolate b/infra/bots/isolate_svg.isolate new file mode 100644 index 0000000000..e04c4e349e --- /dev/null +++ b/infra/bots/isolate_svg.isolate @@ -0,0 +1,7 @@ +{ + 'variables': { + 'command': [ + '/bin/cp', '-rL', 'svg', '${ISOLATED_OUTDIR}', + ], + }, +} diff --git a/infra/bots/isolate_win_toolchain.isolate b/infra/bots/isolate_win_toolchain.isolate new file mode 100644 index 0000000000..a8166ad937 --- /dev/null +++ b/infra/bots/isolate_win_toolchain.isolate @@ -0,0 +1,7 @@ +{ + 'variables': { + 'command': [ + '/bin/cp', '-rL', 't', '${ISOLATED_OUTDIR}', + ], + }, +} diff --git a/infra/bots/isolate_win_vulkan_sdk.isolate b/infra/bots/isolate_win_vulkan_sdk.isolate new file mode 100644 index 0000000000..28fbb0b651 --- /dev/null +++ b/infra/bots/isolate_win_vulkan_sdk.isolate @@ -0,0 +1,7 @@ +{ + 'variables': { + 'command': [ + '/bin/cp', '-rL', 'win_vulkan_sdk', '${ISOLATED_OUTDIR}', + ], + }, +} diff --git a/infra/bots/meta_config.isolate b/infra/bots/meta_config.isolate new file mode 100644 index 0000000000..d4e1484acd --- /dev/null +++ b/infra/bots/meta_config.isolate @@ -0,0 +1,5 @@ +{ + 'includes': [ + 'swarm_recipe.isolate', + ], +} diff --git a/infra/bots/perf_skia.isolate b/infra/bots/perf_skia.isolate new file mode 100644 index 0000000000..b220aa5964 --- /dev/null +++ b/infra/bots/perf_skia.isolate @@ -0,0 +1,13 @@ +{ + 'includes': [ + 'android_bin.isolate', + 'ios_bin.isolate', + 'resources.isolate', + 'swarm_recipe.isolate', + ], + 'variables': { + 'files': [ + '../../../.gclient', + ], + }, +} diff --git a/infra/bots/perf_skia_bundled.isolate b/infra/bots/perf_skia_bundled.isolate index 8504083377..dbfe4c3f79 100644 --- a/infra/bots/perf_skia_bundled.isolate +++ b/infra/bots/perf_skia_bundled.isolate @@ -4,10 +4,10 @@ 'assets.isolate', 'ios_bin.isolate', 'resources.isolate', - 'swarm_recipe.isolate', ], 'variables': { 'files': [ + '../../../.gclient', '../../tools/valgrind.supp', ], }, diff --git a/infra/bots/perf_skia_bundled_unix.isolate b/infra/bots/perf_skia_bundled_unix.isolate new file mode 100644 index 0000000000..5bb5ae153c --- /dev/null +++ b/infra/bots/perf_skia_bundled_unix.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'perf_skia_bundled.isolate', + 'swarm_recipe_bundled_unix.isolate', + ], +} diff --git a/infra/bots/perf_skia_bundled_win.isolate b/infra/bots/perf_skia_bundled_win.isolate new file mode 100644 index 0000000000..8f425937af --- /dev/null +++ b/infra/bots/perf_skia_bundled_win.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'perf_skia_bundled.isolate', + 'swarm_recipe_bundled_win.isolate', + ], +} diff --git a/infra/bots/presubmit_skia.isolate b/infra/bots/presubmit_skia.isolate new file mode 100644 index 0000000000..767fa3af9e --- /dev/null +++ b/infra/bots/presubmit_skia.isolate @@ -0,0 +1,10 @@ +{ + 'includes': [ + 'swarm_recipe.isolate', + ], + 'variables': { + 'files': [ + '../../../.gclient', + ], + }, +} diff --git a/infra/bots/recipes/bundle_recipes.expected/BundleRecipes.json b/infra/bots/recipes/bundle_recipes.expected/BundleRecipes.json new file mode 100644 index 0000000000..1cf232b276 --- /dev/null +++ b/infra/bots/recipes/bundle_recipes.expected/BundleRecipes.json @@ -0,0 +1,61 @@ +[ + { + "cmd": [ + "git", + "init" + ], + "cwd": "[START_DIR]/skia", + "env": { + "PATH": "[START_DIR]/git:[START_DIR]/git/bin:<PATH>" + }, + "infra_step": true, + "name": "git init" + }, + { + "cmd": [ + "git", + "add", + "." + ], + "cwd": "[START_DIR]/skia", + "env": { + "PATH": "[START_DIR]/git:[START_DIR]/git/bin:<PATH>" + }, + "infra_step": true, + "name": "git add" + }, + { + "cmd": [ + "git", + "commit", + "-m", + "commit recipes" + ], + "cwd": "[START_DIR]/skia", + "env": { + "PATH": "[START_DIR]/git:[START_DIR]/git/bin:<PATH>" + }, + "infra_step": true, + "name": "git commit" + }, + { + "cmd": [ + "python", + "[START_DIR]/skia/infra/bots/recipes.py", + "bundle", + "--destination", + "[SWARM_OUT_DIR]/recipe_bundle" + ], + "cwd": "[START_DIR]/skia", + "env": { + "PATH": "[START_DIR]/git:[START_DIR]/git/bin:<PATH>" + }, + "infra_step": true, + "name": "Bundle Recipes" + }, + { + "name": "$result", + "recipe_result": null, + "status_code": 0 + } +]
\ No newline at end of file diff --git a/infra/bots/recipes/bundle_recipes.py b/infra/bots/recipes/bundle_recipes.py new file mode 100644 index 0000000000..49310af55a --- /dev/null +++ b/infra/bots/recipes/bundle_recipes.py @@ -0,0 +1,40 @@ +# Copyright 2016 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + + +# Recipe module for Skia Swarming compile. + + +DEPS = [ + 'git', + 'recipe_engine/context', + 'recipe_engine/path', + 'recipe_engine/properties', + 'recipe_engine/step', +] + + +def RunSteps(api): + bundle_dir = api.properties['swarm_out_dir'] + '/recipe_bundle' + skia_dir = api.path['start_dir'].join('skia') + recipes_py = api.path['start_dir'].join('skia', 'infra', 'bots', 'recipes.py') + with api.git.env(): + with api.context(cwd=skia_dir): + api.step('git init', infra_step=True, + cmd=['git', 'init']) + api.step('git add', infra_step=True, + cmd=['git', 'add', '.']) + api.step('git commit', infra_step=True, + cmd=['git', 'commit', '-m', 'commit recipes']) + api.step('Bundle Recipes', infra_step=True, + cmd=['python', recipes_py, 'bundle', + '--destination', bundle_dir]) + + +def GenTests(api): + yield ( + api.test('BundleRecipes') + + api.properties(buildername='Housekeeper-PerCommit-BundleRecipes', + swarm_out_dir='[SWARM_OUT_DIR]') + ) diff --git a/infra/bots/skpbench_skia.isolate b/infra/bots/skpbench_skia.isolate new file mode 100644 index 0000000000..008aaa755c --- /dev/null +++ b/infra/bots/skpbench_skia.isolate @@ -0,0 +1,11 @@ +{ + 'includes': [ + 'swarm_recipe.isolate', + ], + 'variables': { + 'files': [ + '../../../.gclient', + '../../tools/skpbench/', + ], + }, +}
\ No newline at end of file diff --git a/infra/bots/skpbench_skia_bundled.isolate b/infra/bots/skpbench_skia_bundled.isolate index b6ff22c6e7..5b1ec156f6 100644 --- a/infra/bots/skpbench_skia_bundled.isolate +++ b/infra/bots/skpbench_skia_bundled.isolate @@ -1,10 +1,10 @@ { 'includes': [ 'assets.isolate', - 'swarm_recipe.isolate', ], 'variables': { 'files': [ + '../../../.gclient', '../../tools/valgrind.supp', '../../tools/skpbench/', ], diff --git a/infra/bots/skpbench_skia_bundled_unix.isolate b/infra/bots/skpbench_skia_bundled_unix.isolate new file mode 100644 index 0000000000..c396b305cb --- /dev/null +++ b/infra/bots/skpbench_skia_bundled_unix.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'skpbench_skia_bundled.isolate', + 'swarm_recipe_bundled_unix.isolate', + ], +} diff --git a/infra/bots/skpbench_skia_bundled_win.isolate b/infra/bots/skpbench_skia_bundled_win.isolate new file mode 100644 index 0000000000..befba1b61a --- /dev/null +++ b/infra/bots/skpbench_skia_bundled_win.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'skpbench_skia_bundled.isolate', + 'swarm_recipe_bundled_win.isolate', + ], +} diff --git a/infra/bots/swarm_recipe.isolate b/infra/bots/swarm_recipe.isolate index c4841dfb49..c21a321136 100644 --- a/infra/bots/swarm_recipe.isolate +++ b/infra/bots/swarm_recipe.isolate @@ -3,8 +3,10 @@ 'infrabots.isolate', ], 'variables': { + 'command': [ + 'python', 'recipes.py', '--package', '../config/recipes.cfg', 'run', '--timestamps', + ], 'files': [ - '../../../.gclient', '../config/recipes.cfg', ], }, diff --git a/infra/bots/swarm_recipe_bundled_unix.isolate b/infra/bots/swarm_recipe_bundled_unix.isolate new file mode 100644 index 0000000000..731b369d87 --- /dev/null +++ b/infra/bots/swarm_recipe_bundled_unix.isolate @@ -0,0 +1,7 @@ +{ + 'variables': { + 'command': [ + '../../../recipe_bundle/recipes', 'run', '--timestamps', + ], + }, +} diff --git a/infra/bots/swarm_recipe_bundled_win.isolate b/infra/bots/swarm_recipe_bundled_win.isolate new file mode 100644 index 0000000000..19932fe2a0 --- /dev/null +++ b/infra/bots/swarm_recipe_bundled_win.isolate @@ -0,0 +1,7 @@ +{ + 'variables': { + 'command': [ + '../../../recipe_bundle/recipes.bat', 'run', '--timestamps', + ], + }, +} diff --git a/infra/bots/tasks.json b/infra/bots/tasks.json index 7fd6d07245..1fb88de44a 100644 --- a/infra/bots/tasks.json +++ b/infra/bots/tasks.json @@ -2876,12 +2876,18 @@ }, "tasks": { "Build-Debian9-Clang-arm-Debug-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Housekeeper-PerCommit-IsolateAndroidNDKLinux" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm-Debug-Android", @@ -2892,17 +2898,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateAndroidNDKLinux" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-arm-Debug-Chromebook_GLES": { @@ -2923,12 +2919,15 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm-Debug-Chromebook_GLES", @@ -2939,8 +2938,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm-Release-Android": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" + "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -2948,16 +2951,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-arm-Release-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm-Release-Android", @@ -2968,8 +2964,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm-Release-Android_API26": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ @@ -2978,16 +2977,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-arm-Release-Android_API26": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm-Release-Android_API26", @@ -2998,17 +2990,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateAndroidNDKLinux" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-arm-Release-Chromebook_GLES": { @@ -3029,12 +3011,15 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm-Release-Chromebook_GLES", @@ -3045,8 +3030,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm64-Debug-Android": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" + "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -3054,16 +3043,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-arm64-Debug-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm64-Debug-Android", @@ -3074,8 +3056,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm64-Debug-Android_Vulkan": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ @@ -3084,16 +3069,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-arm64-Debug-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm64-Debug-Android_Vulkan", @@ -3104,8 +3082,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm64-Release-Android": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ @@ -3114,16 +3095,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-arm64-Release-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm64-Release-Android", @@ -3134,8 +3108,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm64-Release-Android_Vulkan": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ @@ -3144,16 +3121,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-arm64-Release-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm64-Release-Android_Vulkan", @@ -3164,8 +3134,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x64-Debug-Android": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ @@ -3174,16 +3147,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-x64-Debug-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x64-Debug-Android", @@ -3194,8 +3160,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x64-Release-Android": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ @@ -3204,16 +3173,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-x64-Release-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x64-Release-Android", @@ -3224,17 +3186,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateAndroidNDKLinux" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86-Debug": { @@ -3245,12 +3197,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86-Debug", @@ -3261,8 +3216,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x86-Debug-Android": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" + "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -3270,16 +3229,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-x86-Debug-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86-Debug-Android", @@ -3290,8 +3242,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x86-Debug-Android_Vulkan": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ @@ -3300,16 +3255,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-x86-Debug-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86-Debug-Android_Vulkan", @@ -3320,8 +3268,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x86-Release-Android": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ @@ -3330,16 +3281,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-x86-Release-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86-Release-Android", @@ -3350,8 +3294,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x86-Release-Android_Vulkan": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ @@ -3360,16 +3307,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-x86-Release-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86-Release-Android_Vulkan", @@ -3380,17 +3320,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateAndroidNDKLinux" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug": { @@ -3401,12 +3331,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug", @@ -3417,16 +3350,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-ASAN": { @@ -3437,12 +3361,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-ASAN", @@ -3453,16 +3380,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES": { @@ -3478,12 +3396,15 @@ "version": "version:2" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES", @@ -3494,16 +3415,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-Coverage": { @@ -3514,12 +3426,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-Coverage", @@ -3530,16 +3445,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-MSAN": { @@ -3550,12 +3456,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-MSAN", @@ -3566,16 +3475,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE": { @@ -3586,12 +3486,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", @@ -3602,16 +3505,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-SafeStack": { @@ -3622,12 +3516,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-SafeStack", @@ -3638,16 +3535,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-Vulkan": { @@ -3663,12 +3551,15 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-Vulkan", @@ -3679,16 +3570,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-Vulkan_Coverage": { @@ -3704,12 +3586,15 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-Vulkan_Coverage", @@ -3720,16 +3605,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release": { @@ -3740,12 +3616,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release", @@ -3756,16 +3635,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-ANGLE": { @@ -3776,12 +3646,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-ANGLE", @@ -3792,16 +3665,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-ASAN": { @@ -3812,12 +3676,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-ASAN", @@ -3828,16 +3695,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-Chromebook_GLES": { @@ -3853,12 +3711,15 @@ "version": "version:2" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-Chromebook_GLES", @@ -3869,16 +3730,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-Fast": { @@ -3889,12 +3741,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-Fast", @@ -3905,16 +3760,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-Mini": { @@ -3925,12 +3771,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-Mini", @@ -3941,16 +3790,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD": { @@ -3961,12 +3801,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD", @@ -3977,16 +3820,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE2": { @@ -3997,12 +3831,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE2", @@ -4013,16 +3850,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE41": { @@ -4033,12 +3861,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE41", @@ -4049,16 +3880,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-SK_FORCE_RASTER_PIPELINE_BLITTER": { @@ -4069,12 +3891,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-SK_FORCE_RASTER_PIPELINE_BLITTER", @@ -4085,16 +3910,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-TSAN": { @@ -4105,12 +3921,15 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-TSAN", @@ -4121,16 +3940,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-Vulkan": { @@ -4146,12 +3956,15 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-Vulkan", @@ -4162,16 +3975,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-EMCC-wasm-Release": { @@ -4182,12 +3986,15 @@ "version": "version:1" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-EMCC-wasm-Release", @@ -4198,16 +4005,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-GCC-arm-Debug-Chromecast": { @@ -4223,12 +4021,15 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-arm-Debug-Chromecast", @@ -4239,16 +4040,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Debian9-GCC-arm-Release-Chromecast": { @@ -4264,12 +4056,15 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-arm-Release-Chromecast", @@ -4280,25 +4075,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86-Debug": { "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86-Debug": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86-Debug", @@ -4309,25 +4098,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86-Release": { "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86-Release": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86-Release", @@ -4338,25 +4121,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Debug": { "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Debug": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Debug", @@ -4367,25 +4144,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Debug-NoGPU": { "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Debug-NoGPU": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Debug-NoGPU", @@ -4396,25 +4167,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release": { "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release", @@ -4425,8 +4190,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-Flutter_Android": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" + "Housekeeper-PerCommit-IsolateAndroidNDKLinux" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -4434,16 +4203,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-Flutter_Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-Flutter_Android", @@ -4454,26 +4216,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateAndroidNDKLinux" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-NoGPU": { "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-NoGPU": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-NoGPU", @@ -4484,25 +4239,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-PDFium": { "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-PDFium": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-PDFium", @@ -4513,25 +4262,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths": { "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths", @@ -4542,25 +4285,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41": { "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41", @@ -4571,25 +4308,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-Shared": { "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-Shared": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-Shared", @@ -4600,25 +4331,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-arm-Debug-iOS": { "dimensions": [ - "cpu:x86-64-Haswell_GCE", + "cpu:x86-64-E5-2697_v2", "gpu:none", - "os:Debian-9.2", + "os:Mac-10.13.1", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-arm-Debug-iOS": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-arm-Debug-iOS", @@ -4629,25 +4354,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-arm-Release-iOS": { "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-arm-Release-iOS": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-arm-Release-iOS", @@ -4658,16 +4377,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2697_v2", - "gpu:none", - "os:Mac-10.13.1", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Mac-Clang-arm64-Debug-Android": { @@ -4678,12 +4388,15 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-E5-2697_v2", + "gpu:none", + "os:Mac-10.13.1", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-arm64-Debug-Android", @@ -4694,25 +4407,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-arm64-Debug-iOS": { "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-arm64-Debug-iOS": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-arm64-Debug-iOS", @@ -4723,25 +4430,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-arm64-Release-iOS": { "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-arm64-Release-iOS": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-arm64-Release-iOS", @@ -4752,25 +4453,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x64-Release-iOS": { "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x64-Release-iOS": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x64-Release-iOS", @@ -4781,25 +4476,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Debug": { "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Debug": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Debug", @@ -4810,25 +4499,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Debug-CommandBuffer": { "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Debug-CommandBuffer": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Debug-CommandBuffer", @@ -4839,25 +4522,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Debug-Metal": { "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Debug-Metal": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Debug-Metal", @@ -4868,25 +4545,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Release": { "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Release": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Release", @@ -4897,25 +4568,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Release-CommandBuffer": { "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Release-CommandBuffer": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Release-CommandBuffer", @@ -4926,25 +4591,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Release-TSAN": { "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Release-TSAN": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Release-TSAN", @@ -4955,16 +4614,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2697_v2", - "gpu:none", - "os:Mac-10.13.1", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Win-Clang-arm64-Release-Android": { @@ -4975,12 +4625,15 @@ "version": "version:5" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-arm64-Release-Android", @@ -4991,16 +4644,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Win-Clang-x86_64-Debug": { @@ -5011,12 +4655,18 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Housekeeper-PerCommit-IsolateWinToolchain" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Debug", @@ -5027,17 +4677,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateWinToolchain" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Win-Clang-x86_64-Debug-ANGLE": { @@ -5048,12 +4688,18 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Housekeeper-PerCommit-IsolateWinToolchain" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Debug-ANGLE", @@ -5064,17 +4710,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateWinToolchain" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Win-Clang-x86_64-Debug-Vulkan": { @@ -5085,12 +4721,19 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Housekeeper-PerCommit-IsolateWinToolchain", + "Housekeeper-PerCommit-IsolateWinVulkanSDK" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Debug-Vulkan", @@ -5101,18 +4744,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateWinToolchain", - "Housekeeper-PerCommit-IsolateWinVulkanSDK" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Win-Clang-x86_64-Release": { @@ -5123,12 +4755,18 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Housekeeper-PerCommit-IsolateWinToolchain" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Release", @@ -5139,17 +4777,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateWinToolchain" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Win-Clang-x86_64-Release-ANGLE": { @@ -5160,12 +4788,18 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Housekeeper-PerCommit-IsolateWinToolchain" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Release-ANGLE", @@ -5176,17 +4810,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateWinToolchain" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Build-Win-Clang-x86_64-Release-Vulkan": { @@ -5197,12 +4821,19 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Housekeeper-PerCommit-IsolateWinToolchain", + "Housekeeper-PerCommit-IsolateWinVulkanSDK" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Release-Vulkan", @@ -5213,10 +4844,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86-Debug": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateWinToolchain", - "Housekeeper-PerCommit-IsolateWinVulkanSDK" + "Housekeeper-PerCommit-IsolateWinToolchain" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -5224,16 +4857,9 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Win-MSVC-x86-Debug": { - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86-Debug", @@ -5244,8 +4870,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86-Debug-Exceptions": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateWinToolchain" ], "dimensions": [ @@ -5254,16 +4883,9 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Win-MSVC-x86-Debug-Exceptions": { - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86-Debug-Exceptions", @@ -5274,8 +4896,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86-Release": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateWinToolchain" ], "dimensions": [ @@ -5284,16 +4909,9 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Win-MSVC-x86-Release": { - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86-Release", @@ -5304,8 +4922,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86_64-Debug": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateWinToolchain" ], "dimensions": [ @@ -5314,16 +4935,9 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Win-MSVC-x86_64-Debug": { - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86_64-Debug", @@ -5334,9 +4948,13 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86_64-Debug-Vulkan": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateWinToolchain" + "Housekeeper-PerCommit-IsolateWinToolchain", + "Housekeeper-PerCommit-IsolateWinVulkanSDK" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -5344,16 +4962,9 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Win-MSVC-x86_64-Debug-Vulkan": { - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86_64-Debug-Vulkan", @@ -5364,10 +4975,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86_64-Release": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateWinToolchain", - "Housekeeper-PerCommit-IsolateWinVulkanSDK" + "Housekeeper-PerCommit-IsolateWinToolchain" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -5375,16 +4988,9 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Win-MSVC-x86_64-Release": { - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86_64-Release", @@ -5395,9 +5001,13 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86_64-Release-Vulkan": { "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateWinToolchain" + "Housekeeper-PerCommit-IsolateWinToolchain", + "Housekeeper-PerCommit-IsolateWinVulkanSDK" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -5405,16 +5015,9 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Build-Win-MSVC-x86_64-Release-Vulkan": { - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86_64-Release-Vulkan", @@ -5425,18 +5028,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateWinToolchain", - "Housekeeper-PerCommit-IsolateWinVulkanSDK" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { @@ -5447,12 +5039,18 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "calmbench", "repository=<(REPO)", "buildername=Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -5463,16 +5061,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "infra_skia.isolate", "priority": 0.8 }, "Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { @@ -5483,12 +5072,18 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG" + ], + "dimensions": [ + "gpu:10de:1cb3-384.59", + "os:Ubuntu-17.04", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "calmbench", "repository=<(REPO)", "buildername=Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -5499,16 +5094,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG" - ], - "dimensions": [ - "gpu:10de:1cb3-384.59", - "os:Ubuntu-17.04", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "infra_skia.isolate", "priority": 0.8 }, "Housekeeper-Nightly-RecreateSKPs_Canary": { @@ -5519,12 +5105,16 @@ "version": "version:3" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "recreate_skps", "repository=<(REPO)", "buildername=Housekeeper-Nightly-RecreateSKPs_Canary", @@ -5535,27 +5125,20 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "io_timeout_ns": 2400000000000, + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Housekeeper-Nightly-UpdateMetaConfig": { "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "execution_timeout_ns": 14400000000000, - "io_timeout_ns": 2400000000000, - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Housekeeper-Nightly-UpdateMetaConfig": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "update_meta_config", "repository=<(REPO)", "buildername=Housekeeper-Nightly-UpdateMetaConfig", @@ -5566,16 +5149,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "meta_config.isolate", "priority": 0.8 }, "Housekeeper-PerCommit": { @@ -5586,12 +5160,18 @@ "version": "version:3" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-GCC-x86_64-Release-Shared" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "housekeeper", "repository=<(REPO)", "buildername=Housekeeper-PerCommit", @@ -5602,64 +5182,48 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-GCC-x86_64-Release-Shared", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "housekeeper_skia.isolate", "priority": 0.8 }, "Housekeeper-PerCommit-BundleRecipes": { "cipd_packages": [ { "name": "infra/git/${platform}", - "path": "cipd_bin_packages", - "version": "version:2.14.1.chromium10" + "path": "git", + "version": "version:2.13.0.chromium9" }, { "name": "infra/tools/git/${platform}", - "path": "cipd_bin_packages", - "version": "git_revision:fa7a52f4741f5e04bba0dfccc9b8456dc572c60b" - }, - { - "name": "infra/tools/luci/git-credential-luci/${platform}", - "path": "cipd_bin_packages", - "version": "git_revision:fa7a52f4741f5e04bba0dfccc9b8456dc572c60b" + "path": "git", + "version": "git_revision:a78b5f3658c0578a017db48df97d20ac09822bcd" } ], - "command": [ - "/bin/bash", - "skia/infra/bots/bundle_recipes.sh", - "${ISOLATED_OUTDIR}" - ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "env_prefixes": { - "PATH": [ - "cipd_bin_packages", - "cipd_bin_packages/bin" - ] - }, - "isolate": "swarm_recipe.isolate", + "extra_args": [ + "--workdir", + "../../..", + "bundle_recipes", + "buildername=Housekeeper-PerCommit-BundleRecipes", + "swarm_out_dir=${ISOLATED_OUTDIR}" + ], + "isolate": "bundle_recipes.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-CheckGeneratedFiles": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "check_generated_files", "repository=<(REPO)", "buildername=Housekeeper-PerCommit-CheckGeneratedFiles", @@ -5670,16 +5234,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "compile_skia.isolate", "priority": 0.8 }, "Housekeeper-PerCommit-InfraTests": { @@ -5690,12 +5245,15 @@ "version": "version:3" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "infra", "repository=<(REPO)", "buildername=Housekeeper-PerCommit-InfraTests", @@ -5706,16 +5264,7 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "infra_skia.isolate", "priority": 0.8 }, "Housekeeper-PerCommit-IsolateAndroidNDKLinux": { @@ -5726,19 +5275,13 @@ "version": "version:10" } ], - "command": [ - "/bin/cp", - "-rL", - "android_ndk_linux", - "${ISOLATED_OUTDIR}" - ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "empty.isolate", + "isolate": "isolate_ndk_linux.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-IsolateSKP": { @@ -5749,19 +5292,13 @@ "version": "version:100" } ], - "command": [ - "/bin/cp", - "-rL", - "skp", - "${ISOLATED_OUTDIR}" - ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "empty.isolate", + "isolate": "isolate_skp.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-IsolateSVG": { @@ -5772,19 +5309,13 @@ "version": "version:9" } ], - "command": [ - "/bin/cp", - "-rL", - "svg", - "${ISOLATED_OUTDIR}" - ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "empty.isolate", + "isolate": "isolate_svg.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-IsolateSkImage": { @@ -5795,19 +5326,13 @@ "version": "version:34" } ], - "command": [ - "/bin/cp", - "-rL", - "skimage", - "${ISOLATED_OUTDIR}" - ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "empty.isolate", + "isolate": "isolate_skimage.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-IsolateWinToolchain": { @@ -5818,19 +5343,13 @@ "version": "version:6" } ], - "command": [ - "/bin/cp", - "-rL", - "t", - "${ISOLATED_OUTDIR}" - ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "empty.isolate", + "isolate": "isolate_win_toolchain.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-IsolateWinVulkanSDK": { @@ -5841,19 +5360,13 @@ "version": "version:2" } ], - "command": [ - "/bin/cp", - "-rL", - "win_vulkan_sdk", - "${ISOLATED_OUTDIR}" - ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "isolate": "empty.isolate", + "isolate": "isolate_win_vulkan_sdk.isolate", "priority": 0.7 }, "Housekeeper-Weekly-RecreateSKPs": { @@ -5864,25 +5377,6 @@ "version": "version:3" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "recreate_skps", - "repository=<(REPO)", - "buildername=Housekeeper-Weekly-RecreateSKPs", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", @@ -5890,20 +5384,12 @@ "pool:Skia" ], "execution_timeout_ns": 14400000000000, - "io_timeout_ns": 2400000000000, - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", - "perf", + "../../..", + "recreate_skps", "repository=<(REPO)", - "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android", + "buildername=Housekeeper-Weekly-RecreateSKPs", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -5911,6 +5397,11 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -5927,21 +5418,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", + "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -5949,6 +5431,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -5965,21 +5453,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android", + "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -5987,6 +5466,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6003,21 +5488,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", + "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6025,6 +5501,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6041,21 +5523,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android", + "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6063,6 +5536,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6079,21 +5558,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", + "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6101,6 +5571,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6117,21 +5593,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android", + "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6139,6 +5606,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6155,21 +5628,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", + "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6177,6 +5641,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6193,21 +5663,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android", + "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6215,6 +5676,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6231,21 +5698,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", + "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6253,6 +5711,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6269,21 +5733,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android", + "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6291,6 +5746,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6307,21 +5768,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan", + "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6329,6 +5781,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -6345,21 +5803,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", + "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6367,6 +5816,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6383,21 +5838,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", + "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6405,6 +5851,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -6421,21 +5873,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android", + "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6443,6 +5886,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6459,21 +5908,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", + "buildername=Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6481,6 +5921,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6497,21 +5943,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android", + "buildername=Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6519,6 +5956,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6535,21 +5978,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", + "buildername=Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6557,6 +5991,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6573,21 +6013,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android", + "buildername=Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6595,6 +6026,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6611,21 +6048,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan", + "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6633,6 +6061,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -6649,21 +6083,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", + "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6671,6 +6096,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6687,21 +6118,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", + "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6709,6 +6131,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -6725,21 +6153,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android", + "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6747,6 +6166,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6763,21 +6188,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", + "buildername=Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6785,6 +6201,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6801,21 +6223,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android", + "buildername=Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6823,6 +6236,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-x86-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6839,21 +6258,12 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android", + "buildername=Perf-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6861,6 +6271,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-x86-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6877,21 +6293,12 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan", + "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6899,6 +6306,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-x86-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -6915,21 +6328,12 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", + "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6937,6 +6341,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-x86-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -6953,21 +6363,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", + "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6975,6 +6376,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-x86-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -6991,21 +6398,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android", + "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7013,6 +6411,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -7029,21 +6433,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan", + "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7051,6 +6446,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -7067,21 +6468,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android", + "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7089,6 +6481,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -7105,21 +6503,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", - "skpbench", + "../../..", + "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench", + "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7127,6 +6516,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -7141,21 +6536,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "skpbench_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "skpbench", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench", + "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7163,6 +6549,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "skpbench_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -7177,21 +6569,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "skpbench_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", - "perf", + "../../..", + "skpbench", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan", + "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7199,6 +6582,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "skpbench_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -7215,21 +6604,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", - "skpbench", + "../../..", + "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench", + "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7237,6 +6617,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -7251,21 +6637,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "skpbench_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", - "perf", + "../../..", + "skpbench", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android", + "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7273,6 +6650,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "skpbench_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -7289,21 +6672,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan", + "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7311,6 +6685,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -7327,21 +6707,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", + "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7349,6 +6720,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -7365,21 +6742,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", + "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7387,6 +6755,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -7403,21 +6777,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android", + "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7425,6 +6790,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -7441,21 +6812,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", + "buildername=Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7463,6 +6825,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -7479,21 +6847,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", - "skpbench", + "../../..", + "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench", + "buildername=Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7501,6 +6860,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -7515,21 +6880,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "skpbench_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "skpbench", "repository=<(REPO)", - "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench", + "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7537,6 +6893,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "skpbench_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -7551,21 +6913,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "skpbench_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "skpbench", "repository=<(REPO)", - "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench", + "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7573,6 +6926,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "skpbench_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -7587,21 +6946,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "skpbench_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", - "perf", + "../../..", + "skpbench", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All", + "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7609,6 +6959,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "skpbench_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7624,21 +6980,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", + "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7646,6 +6993,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7661,21 +7014,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All", + "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7683,6 +7027,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7698,21 +7048,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", + "buildername=Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7720,6 +7061,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7735,21 +7082,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", + "buildername=Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7757,6 +7095,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7772,21 +7116,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", + "buildername=Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7794,6 +7129,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7809,21 +7150,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All", + "buildername=Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7831,6 +7163,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All": { "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7846,21 +7184,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", + "buildername=Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7868,6 +7197,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { "dependencies": [ "Build-Debian9-Clang-x86_64-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7883,21 +7218,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All", + "buildername=Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7905,6 +7231,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7920,21 +7252,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", + "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7942,6 +7265,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7957,21 +7286,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", + "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7979,6 +7299,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7994,21 +7320,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", + "buildername=Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -8016,6 +7333,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -8031,21 +7354,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All", + "buildername=Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -8053,6 +7367,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All": { "dependencies": [ "Build-Debian9-GCC-arm-Debug-Chromecast", "Housekeeper-PerCommit-BundleRecipes", @@ -8067,21 +7387,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", + "buildername=Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -8089,6 +7400,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { "dependencies": [ "Build-Debian9-GCC-arm-Release-Chromecast", "Housekeeper-PerCommit-BundleRecipes", @@ -8103,21 +7420,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All", + "buildername=Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -8125,6 +7433,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All": { "dependencies": [ "Build-Debian9-GCC-arm-Debug-Chromecast", "Housekeeper-PerCommit-BundleRecipes", @@ -8139,21 +7453,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", + "buildername=Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -8161,6 +7466,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { "dependencies": [ "Build-Debian9-GCC-arm-Release-Chromecast", "Housekeeper-PerCommit-BundleRecipes", @@ -8175,8 +7486,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8198,22 +7522,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -8225,8 +7533,21 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8248,22 +7569,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -8275,8 +7580,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8303,22 +7621,6 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-ASAN", "Housekeeper-PerCommit-BundleRecipes" @@ -8330,8 +7632,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8358,22 +7673,6 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-MSAN", "Housekeeper-PerCommit-BundleRecipes" @@ -8385,8 +7684,21 @@ ], "execution_timeout_ns": 32400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8408,22 +7720,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", "Housekeeper-PerCommit-BundleRecipes" @@ -8435,8 +7731,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8458,22 +7767,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-SafeStack", "Housekeeper-PerCommit-BundleRecipes" @@ -8485,8 +7778,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8508,22 +7814,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -8535,8 +7825,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8563,22 +7866,6 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release-ASAN", "Housekeeper-PerCommit-BundleRecipes" @@ -8590,8 +7877,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8613,22 +7913,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release-Fast", "Housekeeper-PerCommit-BundleRecipes" @@ -8640,8 +7924,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8663,22 +7960,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release-SK_FORCE_RASTER_PIPELINE_BLITTER", "Housekeeper-PerCommit-BundleRecipes" @@ -8690,8 +7971,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8713,22 +8007,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -8740,8 +8018,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8763,22 +8054,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -8790,8 +8065,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8813,22 +8101,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-GCC-x86-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -8840,8 +8112,21 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8863,22 +8148,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-GCC-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -8890,8 +8159,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8913,22 +8195,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-GCC-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -8940,8 +8206,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8963,22 +8242,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Mac-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -8990,8 +8253,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9013,22 +8289,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Mac-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -9040,8 +8300,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9063,22 +8336,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Mac-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -9090,8 +8347,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9113,22 +8383,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Mac-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -9140,8 +8394,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9163,22 +8430,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Mac-Clang-x86_64-Release-CommandBuffer", "Housekeeper-PerCommit-BundleRecipes" @@ -9190,18 +8441,33 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, "Perf-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Release-All-CT_BENCH_1k_SKPs": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "pool:SkiaCT", + "os:Debian-9.2" + ], + "execution_timeout_ns": 86400000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "ct_skps", "repository=<(REPO)", "buildername=Perf-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Release-All-CT_BENCH_1k_SKPs", @@ -9212,25 +8478,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "io_timeout_ns": 3600000000000, + "isolate": "ct_skps_skia.isolate", + "priority": 0.8 + }, + "Perf-Ubuntu14-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-CT_BENCH_1k_SKPs": { "dimensions": [ "pool:SkiaCT", "os:Debian-9.2" ], "execution_timeout_ns": 86400000000000, - "io_timeout_ns": 3600000000000, - "isolate": "skia_repo.isolate", - "priority": 0.8 - }, - "Perf-Ubuntu14-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-CT_BENCH_1k_SKPs": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "ct_skps", "repository=<(REPO)", "buildername=Perf-Ubuntu14-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-CT_BENCH_1k_SKPs", @@ -9241,16 +8501,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "pool:SkiaCT", - "os:Debian-9.2" - ], - "execution_timeout_ns": 86400000000000, "io_timeout_ns": 3600000000000, - "isolate": "skia_repo.isolate", + "isolate": "ct_skps_skia.isolate", "priority": 0.8 }, "Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All": { @@ -9276,22 +8528,6 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -9303,8 +8539,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9336,22 +8585,6 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -9363,8 +8596,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9391,22 +8637,6 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -9418,8 +8648,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9451,22 +8694,6 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -9478,8 +8705,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9506,22 +8746,6 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -9533,8 +8757,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9566,22 +8803,6 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -9593,8 +8814,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9621,22 +8855,6 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -9648,8 +8866,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9681,22 +8912,6 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -9708,8 +8923,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9736,22 +8964,6 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -9763,8 +8975,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9791,22 +9016,6 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -9818,8 +9027,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9846,22 +9068,6 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -9873,8 +9079,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9901,22 +9120,6 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -9928,8 +9131,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9951,22 +9167,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -9978,8 +9178,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10006,22 +9219,6 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ASAN", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-ASAN", "Housekeeper-PerCommit-BundleRecipes" @@ -10033,8 +9230,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ASAN", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10061,22 +9271,6 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -10088,8 +9282,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10111,22 +9318,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -10138,8 +9329,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10166,22 +9370,6 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ASAN", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release-ASAN", "Housekeeper-PerCommit-BundleRecipes" @@ -10193,8 +9381,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ASAN", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10221,22 +9422,6 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -10248,8 +9433,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10276,22 +9474,6 @@ "version": "version:7" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41", "Housekeeper-PerCommit-BundleRecipes" @@ -10304,8 +9486,21 @@ ], "execution_timeout_ns": 32400000000000, "expiration_ns": 172800000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 3600000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10332,22 +9527,6 @@ "version": "version:7" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_SK_CPU_LIMIT_SSE41", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41", "Housekeeper-PerCommit-BundleRecipes" @@ -10360,8 +9539,21 @@ ], "execution_timeout_ns": 32400000000000, "expiration_ns": 172800000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_SK_CPU_LIMIT_SSE41", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 3600000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10383,22 +9575,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -10410,8 +9586,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10433,22 +9622,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -10460,8 +9633,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10483,22 +9669,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -10510,8 +9680,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10533,22 +9716,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -10560,8 +9727,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10583,22 +9763,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -10610,8 +9774,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10633,22 +9810,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -10660,8 +9821,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10683,22 +9857,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -10710,8 +9868,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10733,22 +9904,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -10760,8 +9915,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10783,22 +9951,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -10810,8 +9962,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10833,22 +9998,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -10860,8 +10009,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10883,22 +10045,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -10910,8 +10056,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10933,22 +10092,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -10960,8 +10103,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10983,22 +10139,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -11010,8 +10150,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11033,22 +10186,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -11060,8 +10197,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11083,22 +10233,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -11110,8 +10244,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11133,22 +10280,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -11160,8 +10291,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11183,22 +10327,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -11210,8 +10338,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11233,22 +10374,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -11260,8 +10385,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11283,22 +10421,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -11310,8 +10432,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11333,22 +10468,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -11360,8 +10479,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11383,22 +10515,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -11410,8 +10526,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11433,22 +10562,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -11460,8 +10573,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11483,22 +10609,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -11510,8 +10620,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11533,22 +10656,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -11560,8 +10667,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11583,22 +10703,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -11610,8 +10714,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11633,22 +10750,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -11660,8 +10761,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11683,22 +10797,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -11710,8 +10808,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11733,22 +10844,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -11760,8 +10855,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11783,22 +10891,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -11810,8 +10902,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11833,22 +10938,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -11860,8 +10949,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11883,22 +10985,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -11910,8 +10996,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11933,22 +11032,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -11960,8 +11043,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11983,22 +11079,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -12010,8 +11090,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12033,22 +11126,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -12060,8 +11137,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12083,22 +11173,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -12110,8 +11184,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12133,22 +11220,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -12160,8 +11231,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12183,22 +11267,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -12210,8 +11278,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12233,22 +11314,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -12260,8 +11325,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12283,22 +11361,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -12310,8 +11372,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12333,22 +11408,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -12360,8 +11419,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12383,22 +11455,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -12410,8 +11466,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12433,22 +11502,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -12461,8 +11514,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12484,22 +11550,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -12512,8 +11562,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12535,22 +11598,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -12563,8 +11610,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12586,22 +11646,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -12614,8 +11658,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12637,22 +11694,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -12665,8 +11706,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12688,22 +11742,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -12716,8 +11754,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12739,22 +11790,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -12766,8 +11801,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12789,22 +11837,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -12816,8 +11848,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12839,22 +11884,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -12866,8 +11895,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12889,22 +11931,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -12916,8 +11942,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12939,22 +11978,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -12966,8 +11989,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12989,22 +12025,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -13016,8 +12036,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13039,22 +12072,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-MSVC-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -13066,8 +12083,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13089,22 +12119,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-MSVC-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -13116,8 +12130,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13139,22 +12166,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-MSVC-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -13166,8 +12177,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13189,22 +12213,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-MSVC-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -13216,8 +12224,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13239,22 +12260,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -13266,8 +12271,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13289,22 +12307,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -13316,8 +12318,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13339,22 +12354,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-MSVC-x86-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -13366,8 +12365,21 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13389,22 +12401,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-MSVC-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -13416,8 +12412,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13439,22 +12448,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-MSVC-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -13466,8 +12459,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13489,22 +12495,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -13516,8 +12506,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13539,22 +12542,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -13566,8 +12553,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13589,22 +12589,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -13616,8 +12600,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13639,22 +12636,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win7-MSVC-Golo-CPU-AVX-x86-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-MSVC-x86-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -13666,8 +12647,21 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win7-MSVC-Golo-CPU-AVX-x86-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13689,22 +12683,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -13716,8 +12694,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "perf", + "repository=<(REPO)", + "buildername=Perf-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13739,22 +12730,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "perf", - "repository=<(REPO)", - "buildername=Perf-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-MSVC-x86-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -13766,21 +12741,12 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All", + "buildername=Perf-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13788,6 +12754,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_win.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": { "dependencies": [ "Build-Mac-Clang-arm64-Debug-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -13802,21 +12774,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", + "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13824,6 +12787,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { "dependencies": [ "Build-Mac-Clang-arm64-Release-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -13838,21 +12807,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All", + "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13860,6 +12820,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All": { "dependencies": [ "Build-Mac-Clang-arm64-Debug-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -13874,21 +12840,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", + "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13896,6 +12853,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { "dependencies": [ "Build-Mac-Clang-arm64-Release-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -13910,21 +12873,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", + "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13932,6 +12886,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All": { "dependencies": [ "Build-Mac-Clang-arm64-Debug-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -13946,21 +12906,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "perf", "repository=<(REPO)", - "buildername=Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", + "buildername=Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13968,6 +12919,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { "dependencies": [ "Build-Mac-Clang-arm64-Release-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -13982,22 +12939,12 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", - "test", + "../../..", + "perf", "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android", + "buildername=Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14005,6 +12952,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "perf_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14021,22 +12974,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", + "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14044,6 +12988,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14060,22 +13010,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts", + "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14083,6 +13024,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14099,22 +13046,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android", + "buildername=Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14122,6 +13060,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14138,22 +13082,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", + "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14161,6 +13096,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14177,22 +13118,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android", + "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14200,6 +13132,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14216,22 +13154,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", + "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14239,6 +13168,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14255,22 +13190,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android", + "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14278,6 +13204,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14294,22 +13226,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", + "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14317,6 +13240,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14333,22 +13262,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android", + "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14356,6 +13276,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14372,22 +13298,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", + "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14395,6 +13312,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14411,22 +13334,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android", + "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14434,6 +13348,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14450,22 +13370,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR", + "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14473,6 +13384,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14489,22 +13406,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan", + "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14512,6 +13420,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -14528,22 +13442,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", + "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14551,6 +13456,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14567,22 +13478,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", + "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14590,6 +13492,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -14606,22 +13514,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android", + "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14629,6 +13528,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14645,22 +13550,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", + "buildername=Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14668,6 +13564,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14684,22 +13586,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android", + "buildername=Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14707,6 +13600,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14723,22 +13622,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", + "buildername=Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14746,6 +13636,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14762,22 +13658,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android", + "buildername=Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14785,6 +13672,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14801,22 +13694,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan", + "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14824,6 +13708,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -14840,22 +13730,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", + "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14863,6 +13744,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14879,22 +13766,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", + "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14902,6 +13780,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -14918,22 +13802,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android", + "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14941,6 +13816,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14957,22 +13838,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", + "buildername=Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14980,6 +13852,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14996,22 +13874,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android", + "buildername=Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15019,6 +13888,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-x86-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -15035,22 +13910,13 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android", + "buildername=Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15058,6 +13924,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-x86-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -15074,22 +13946,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android", + "buildername=Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15097,6 +13960,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-x86-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -15113,22 +13982,13 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan", + "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15136,6 +13996,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-x86-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -15152,22 +14018,13 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", + "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15175,6 +14032,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-x86-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -15191,22 +14054,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", + "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15214,6 +14068,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-x86-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -15230,22 +14090,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android", + "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15253,6 +14104,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -15269,22 +14126,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan", + "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15292,6 +14140,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -15308,22 +14162,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", + "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15331,6 +14176,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -15347,22 +14198,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", + "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15370,6 +14212,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -15386,22 +14234,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android", + "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15409,6 +14248,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -15425,22 +14270,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", + "buildername=Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15448,6 +14284,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -15464,22 +14306,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android", + "buildername=Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15487,6 +14320,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -15503,22 +14342,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR", + "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15526,6 +14356,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -15542,22 +14378,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan", + "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15565,6 +14392,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -15581,22 +14414,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android", + "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15604,6 +14428,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -15620,22 +14450,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_Vulkan", + "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15643,6 +14464,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { "dependencies": [ "Build-Debian9-Clang-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -15659,22 +14486,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All", + "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15682,6 +14500,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -15697,22 +14521,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", + "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15720,6 +14535,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -15735,22 +14556,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All", + "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15758,6 +14570,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -15773,22 +14591,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", + "buildername=Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15796,6 +14605,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -15811,22 +14626,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", + "buildername=Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15834,6 +14640,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -15849,22 +14661,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", + "buildername=Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15872,6 +14675,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -15887,22 +14696,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All", + "buildername=Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15910,6 +14710,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All": { "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -15925,22 +14731,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", + "buildername=Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15948,6 +14745,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { "dependencies": [ "Build-Debian9-Clang-x86_64-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -15963,22 +14766,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All", + "buildername=Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -15986,6 +14780,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -16001,22 +14801,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", + "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -16024,6 +14815,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -16039,22 +14836,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", + "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -16062,6 +14850,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All": { "dependencies": [ "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -16077,22 +14871,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", + "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -16100,6 +14885,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { "dependencies": [ "Build-Debian9-Clang-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -16115,22 +14906,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All", + "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -16138,6 +14920,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All": { "dependencies": [ "Build-Debian9-GCC-arm-Debug-Chromecast", "Housekeeper-PerCommit-BundleRecipes", @@ -16152,22 +14940,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", + "buildername=Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -16175,6 +14954,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { "dependencies": [ "Build-Debian9-GCC-arm-Release-Chromecast", "Housekeeper-PerCommit-BundleRecipes", @@ -16189,22 +14974,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All", + "buildername=Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -16212,6 +14988,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All": { "dependencies": [ "Build-Debian9-GCC-arm-Debug-Chromecast", "Housekeeper-PerCommit-BundleRecipes", @@ -16226,22 +15008,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", + "buildername=Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -16249,6 +15022,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { "dependencies": [ "Build-Debian9-GCC-arm-Release-Chromecast", "Housekeeper-PerCommit-BundleRecipes", @@ -16263,8 +15042,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16286,12 +15079,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 21600000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16303,19 +15104,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 21600000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16337,12 +15127,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16354,19 +15152,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16393,12 +15180,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-ASAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16410,19 +15205,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-ASAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16449,12 +15233,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-ASAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16466,19 +15258,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-ASAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16505,12 +15286,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-ASAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16522,19 +15311,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-ASAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16561,12 +15339,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-ASAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16578,19 +15364,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-ASAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16617,12 +15392,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-MSAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 32400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16634,19 +15417,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-MSAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 32400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16673,12 +15445,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-MSAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 32400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16690,19 +15470,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-MSAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 32400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16729,12 +15498,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-MSAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 32400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16746,19 +15523,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-MSAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 32400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16785,12 +15551,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-MSAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 32400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16802,19 +15576,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-MSAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 32400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16836,12 +15599,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16853,19 +15624,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16887,12 +15647,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16904,19 +15672,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16938,12 +15695,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-SafeStack", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16955,19 +15720,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-SafeStack", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16989,22 +15743,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_00_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17016,8 +15754,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_00_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17039,22 +15790,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_01_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17066,8 +15801,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_01_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17089,22 +15837,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_02_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17116,8 +15848,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_02_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17139,22 +15884,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_03_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17166,8 +15895,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_03_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17189,22 +15931,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_04_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17216,8 +15942,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_04_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17239,22 +15978,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_05_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17266,8 +15989,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_05_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17289,22 +16025,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_06_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17316,8 +16036,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_06_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17339,22 +16072,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_07_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17366,8 +16083,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_07_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17389,22 +16119,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_08_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17416,8 +16130,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_08_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17439,22 +16166,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_09_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17466,8 +16177,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_09_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17489,22 +16213,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_10_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17516,8 +16224,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_10_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17539,22 +16260,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_11_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -17566,8 +16271,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_11_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17589,12 +16307,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17606,19 +16332,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17645,12 +16360,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-ASAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17662,19 +16385,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-ASAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17696,12 +16408,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-Fast", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17713,19 +16433,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-Fast", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17747,12 +16456,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17764,19 +16481,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17798,12 +16504,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE2", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17815,19 +16529,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE2", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17849,12 +16552,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE41", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17866,19 +16577,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE41", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17900,12 +16600,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-SK_FORCE_RASTER_PIPELINE_BLITTER", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17917,19 +16625,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-SK_FORCE_RASTER_PIPELINE_BLITTER", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17956,12 +16653,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-TSAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17973,19 +16678,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-TSAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18007,12 +16701,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Skylake_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18024,19 +16726,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Skylake_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18058,12 +16749,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Skylake_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18075,19 +16774,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Skylake_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18109,12 +16797,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-GCC-x86-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 21600000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18126,19 +16822,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-GCC-x86-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 21600000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18160,12 +16845,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-GCC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18177,19 +16870,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-GCC-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18211,12 +16893,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18228,19 +16918,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-GCC-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18262,12 +16941,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Mac-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2697_v2", + "os:Mac-10.13.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18279,19 +16966,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Mac-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2697_v2", - "os:Mac-10.13.1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18313,12 +16989,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Mac-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2697_v2", + "os:Mac-10.13.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18330,19 +17014,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Mac-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2697_v2", - "os:Mac-10.13.1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18364,12 +17037,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Mac-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2697_v2", + "os:Mac-10.13.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18381,19 +17062,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Mac-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2697_v2", - "os:Mac-10.13.1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18415,12 +17085,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Mac-Clang-x86_64-Release-TSAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2697_v2", + "os:Mac-10.13.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18432,19 +17110,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Mac-Clang-x86_64-Release-TSAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2697_v2", - "os:Mac-10.13.1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18466,12 +17133,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Mac-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0a2e", + "os:Mac-10.13.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18483,19 +17158,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Mac-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0a2e", - "os:Mac-10.13.1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18517,12 +17181,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Mac-Clang-x86_64-Debug-CommandBuffer", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0a2e", + "os:Mac-10.13.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18534,19 +17206,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Mac-Clang-x86_64-Debug-CommandBuffer", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0a2e", - "os:Mac-10.13.1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18568,12 +17229,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Mac-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0a2e", + "os:Mac-10.13.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18585,19 +17254,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Mac-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0a2e", - "os:Mac-10.13.1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18619,12 +17277,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Mac-Clang-x86_64-Release-TSAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0a2e", + "os:Mac-10.13.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18636,29 +17302,20 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Mac-Clang-x86_64-Release-TSAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0a2e", - "os:Mac-10.13.1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, "Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_DM_100k_SKPs": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dimensions": [ + "pool:SkiaCT", + "os:Debian-9.2" + ], + "execution_timeout_ns": 86400000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "ct_skps", "repository=<(REPO)", "buildername=Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_DM_100k_SKPs", @@ -18669,25 +17326,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "io_timeout_ns": 3600000000000, + "isolate": "ct_skps_skia.isolate", + "priority": 0.8 + }, + "Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_DM_1m_SKPs": { "dimensions": [ "pool:SkiaCT", "os:Debian-9.2" ], "execution_timeout_ns": 86400000000000, - "io_timeout_ns": 3600000000000, - "isolate": "skia_repo.isolate", - "priority": 0.8 - }, - "Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_DM_1m_SKPs": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "ct_skps", "repository=<(REPO)", "buildername=Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_DM_1m_SKPs", @@ -18698,25 +17349,19 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], + "io_timeout_ns": 3600000000000, + "isolate": "ct_skps_skia.isolate", + "priority": 0.8 + }, + "Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_IMG_DECODE_100k_SKPs": { "dimensions": [ "pool:SkiaCT", "os:Debian-9.2" ], "execution_timeout_ns": 86400000000000, - "io_timeout_ns": 3600000000000, - "isolate": "skia_repo.isolate", - "priority": 0.8 - }, - "Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_IMG_DECODE_100k_SKPs": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "ct_skps", "repository=<(REPO)", "buildername=Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_IMG_DECODE_100k_SKPs", @@ -18727,16 +17372,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "pool:SkiaCT", - "os:Debian-9.2" - ], - "execution_timeout_ns": 86400000000000, "io_timeout_ns": 3600000000000, - "isolate": "skia_repo.isolate", + "isolate": "ct_skps_skia.isolate", "priority": 0.8 }, "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All": { @@ -18762,12 +17399,20 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:22b1", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18779,19 +17424,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:22b1", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18823,12 +17457,20 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:22b1", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18840,19 +17482,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:22b1", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18879,12 +17510,20 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:22b1", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18896,19 +17535,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:22b1", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18940,12 +17568,20 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:22b1", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18957,19 +17593,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:22b1", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18996,12 +17621,20 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:1926", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19013,19 +17646,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:1926", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19057,12 +17679,20 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:1926", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19074,19 +17704,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:1926", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19113,12 +17732,20 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:1926", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19130,19 +17757,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:1926", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19174,12 +17790,20 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:1926", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19191,19 +17815,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:1926", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19230,12 +17843,20 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0f31", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19247,19 +17868,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0f31", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19286,12 +17896,20 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0f31", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19303,19 +17921,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0f31", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19342,12 +17949,20 @@ "version": "version:4" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0102", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19359,19 +17974,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0102", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19398,12 +18002,20 @@ "version": "version:6" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0102", + "os:Ubuntu-16.10", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19415,19 +18027,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0102", - "os:Ubuntu-16.10", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19449,12 +18050,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-384.59", + "os:Ubuntu-17.04", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19466,19 +18075,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-384.59", - "os:Ubuntu-17.04", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19505,12 +18103,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-ASAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-384.59", + "os:Ubuntu-17.04", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19522,19 +18128,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-ASAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-384.59", - "os:Ubuntu-17.04", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19561,12 +18156,20 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-384.59", + "os:Ubuntu-17.04", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19578,19 +18181,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Debug-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-384.59", - "os:Ubuntu-17.04", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19612,22 +18204,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -19639,8 +18215,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19667,22 +18256,6 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Vulkan_Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-Clang-x86_64-Debug-Vulkan_Coverage", "Housekeeper-PerCommit-BundleRecipes" @@ -19694,8 +18267,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Vulkan_Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19717,12 +18303,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-384.59", + "os:Ubuntu-17.04", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19734,19 +18328,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-384.59", - "os:Ubuntu-17.04", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19773,12 +18356,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-ASAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-384.59", + "os:Ubuntu-17.04", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19790,19 +18381,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-ASAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-384.59", - "os:Ubuntu-17.04", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19824,12 +18404,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-384.59", + "os:Ubuntu-17.04", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19841,19 +18429,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-384.59", - "os:Ubuntu-17.04", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19880,12 +18457,20 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-TSAN", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-384.59", + "os:Ubuntu-17.04", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19897,19 +18482,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-TSAN", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-384.59", - "os:Ubuntu-17.04", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19936,12 +18510,20 @@ "version": "version:0" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Build-Debian9-Clang-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-384.59", + "os:Ubuntu-17.04", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19953,19 +18535,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Debian9-Clang-x86_64-Release-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-384.59", - "os:Ubuntu-17.04", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19992,23 +18563,6 @@ "version": "version:7" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41", "Housekeeper-PerCommit-BundleRecipes" @@ -20021,8 +18575,22 @@ ], "execution_timeout_ns": 32400000000000, "expiration_ns": 172800000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 3600000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20049,23 +18617,6 @@ "version": "version:7" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_PreAbandonGpuContext_SK_CPU_LIMIT_SSE41", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41", "Housekeeper-PerCommit-BundleRecipes" @@ -20078,8 +18629,22 @@ ], "execution_timeout_ns": 32400000000000, "expiration_ns": 172800000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_PreAbandonGpuContext_SK_CPU_LIMIT_SSE41", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 3600000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20106,23 +18671,6 @@ "version": "version:7" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_SK_CPU_LIMIT_SSE41", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41", "Housekeeper-PerCommit-BundleRecipes" @@ -20135,8 +18683,22 @@ ], "execution_timeout_ns": 32400000000000, "expiration_ns": 172800000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_SK_CPU_LIMIT_SSE41", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 3600000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20158,12 +18720,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:6646-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20175,19 +18745,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:6646-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20209,12 +18768,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:6646-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20226,19 +18793,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:6646-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20260,12 +18816,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:6646-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20277,19 +18841,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:6646-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20311,12 +18864,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:6646-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20328,19 +18889,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:6646-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20362,12 +18912,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:6646-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20379,19 +18937,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:6646-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20413,12 +18960,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:6646-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20430,19 +18985,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:6646-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20464,12 +19008,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:104a-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20481,19 +19033,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:104a-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20515,12 +19056,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:104a-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20532,19 +19081,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:104a-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20566,12 +19104,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:104a-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20583,19 +19129,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:104a-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20617,12 +19152,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20634,19 +19177,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20668,12 +19200,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20685,19 +19225,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20719,12 +19248,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20736,19 +19273,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20770,12 +19296,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20787,19 +19321,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20821,12 +19344,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20838,19 +19369,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20872,12 +19392,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20889,19 +19417,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20923,12 +19440,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20940,19 +19465,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20974,12 +19488,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-i7-5557U", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20991,19 +19513,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-i7-5557U", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21025,12 +19536,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:162b-20.19.15.4703", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21042,19 +19561,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:162b-20.19.15.4703", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21076,12 +19584,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:162b-20.19.15.4703", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21093,19 +19609,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:162b-20.19.15.4703", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21127,12 +19632,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:162b-20.19.15.4703", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21144,19 +19657,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:162b-20.19.15.4703", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21178,12 +19680,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:162b-20.19.15.4703", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21195,19 +19705,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:162b-20.19.15.4703", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21229,12 +19728,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:1926-21.20.16.4590", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21246,19 +19753,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:1926-21.20.16.4590", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21280,12 +19776,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:1926-21.20.16.4590", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21297,19 +19801,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:1926-21.20.16.4590", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21331,12 +19824,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:1926-21.20.16.4590", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21348,19 +19849,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:1926-21.20.16.4590", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21382,12 +19872,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:1926-21.20.16.4590", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21399,19 +19897,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:1926-21.20.16.4590", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21433,12 +19920,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:1926-21.20.16.4590", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21450,19 +19945,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:1926-21.20.16.4590", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21484,12 +19968,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:1926-21.20.16.4590", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21501,19 +19993,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:1926-21.20.16.4590", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21535,12 +20016,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0a16-20.19.15.4703", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21552,19 +20041,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0a16-20.19.15.4703", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21586,12 +20064,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0a16-20.19.15.4703", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21603,19 +20089,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0a16-20.19.15.4703", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21637,12 +20112,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0a16-20.19.15.4703", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21654,19 +20137,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0a16-20.19.15.4703", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21688,12 +20160,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:8086:0a16-20.19.15.4703", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21705,19 +20185,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:8086:0a16-20.19.15.4703", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21739,12 +20208,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:11c0-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21756,19 +20233,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:11c0-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21790,12 +20256,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:11c0-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21807,19 +20281,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:11c0-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21841,12 +20304,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:11c0-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21858,19 +20329,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:11c0-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21892,12 +20352,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:11c0-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21909,19 +20377,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:11c0-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21943,12 +20400,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:11c0-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21960,19 +20425,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:11c0-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21994,12 +20448,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:11c0-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22011,19 +20473,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:11c0-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22045,12 +20496,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:683d-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22062,19 +20521,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:683d-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22096,12 +20544,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:683d-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22113,19 +20569,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:683d-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22147,12 +20592,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:683d-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22164,19 +20617,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:683d-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22198,12 +20640,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:683d-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22215,19 +20665,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:683d-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22249,12 +20688,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:683d-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22266,19 +20713,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:683d-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22300,12 +20736,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:1002:683d-22.19.165.512", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22317,19 +20761,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:1002:683d-22.19.165.512", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22351,23 +20784,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug", "Housekeeper-PerCommit-BundleRecipes" @@ -22380,8 +20796,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22403,23 +20833,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -22432,8 +20845,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22455,23 +20882,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Debug-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -22484,8 +20894,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22507,23 +20931,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -22536,8 +20943,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22559,23 +20980,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-ANGLE", "Housekeeper-PerCommit-BundleRecipes" @@ -22588,8 +20992,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22611,23 +21029,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-Clang-x86_64-Release-Vulkan", "Housekeeper-PerCommit-BundleRecipes" @@ -22640,8 +21041,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22663,12 +21078,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1ba1-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22680,19 +21103,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1ba1-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22714,12 +21126,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1ba1-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22731,19 +21151,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1ba1-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22765,12 +21174,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1ba1-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22782,19 +21199,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1ba1-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22816,12 +21222,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1ba1-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22833,19 +21247,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1ba1-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22867,12 +21270,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1ba1-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22884,19 +21295,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1ba1-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22918,12 +21318,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1ba1-23.21.13.8813", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22935,19 +21343,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1ba1-23.21.13.8813", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22969,12 +21366,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22986,19 +21391,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-MSVC-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23020,12 +21414,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-MSVC-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23037,19 +21439,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23071,12 +21462,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23088,19 +21487,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-MSVC-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23122,12 +21510,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-MSVC-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-10-15063", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23139,19 +21535,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-MSVC-x86_64-Release-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-10-15063", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23173,12 +21558,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23190,19 +21583,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23224,12 +21606,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23241,19 +21631,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23275,12 +21654,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23292,19 +21679,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23326,12 +21702,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23343,19 +21727,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23377,12 +21750,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23394,19 +21775,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23428,12 +21798,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23445,19 +21823,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23479,12 +21846,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23496,19 +21871,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23530,12 +21894,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23547,19 +21919,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23581,12 +21942,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-MSVC-x86-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 21600000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23598,19 +21967,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-MSVC-x86-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 21600000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23632,12 +21990,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-MSVC-x86-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23649,19 +22015,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-MSVC-x86-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23683,12 +22038,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23700,19 +22063,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-MSVC-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23734,12 +22086,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23751,19 +22111,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-MSVC-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23785,12 +22134,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-2008ServerR2-SP1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23802,19 +22159,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-2008ServerR2-SP1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23836,12 +22182,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "gpu:10de:1cb3-22.21.13.8205", + "os:Windows-2008ServerR2-SP1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23853,19 +22207,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "gpu:10de:1cb3-22.21.13.8205", - "os:Windows-2008ServerR2-SP1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23887,12 +22230,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2670", + "os:Windows-7-SP1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23904,19 +22255,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2670", - "os:Windows-7-SP1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23938,12 +22278,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2670", + "os:Windows-7-SP1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -23955,19 +22303,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2670", - "os:Windows-7-SP1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -23989,12 +22326,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2670", + "os:Windows-7-SP1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -24006,19 +22351,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2670", - "os:Windows-7-SP1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -24040,12 +22374,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2670", + "os:Windows-7-SP1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -24057,19 +22399,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2670", - "os:Windows-7-SP1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -24091,12 +22422,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-MSVC-x86-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2670", + "os:Windows-7-SP1", + "pool:Skia" + ], + "execution_timeout_ns": 21600000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -24108,19 +22447,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-MSVC-x86-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2670", - "os:Windows-7-SP1", - "pool:Skia" - ], - "execution_timeout_ns": 21600000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -24142,12 +22470,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-MSVC-x86-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2670", + "os:Windows-7-SP1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -24159,19 +22495,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-MSVC-x86-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2670", - "os:Windows-7-SP1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -24193,12 +22518,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2670", + "os:Windows-8.1-SP0", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -24210,19 +22543,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2670", - "os:Windows-8.1-SP0", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -24244,12 +22566,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2670", + "os:Windows-8.1-SP0", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -24261,19 +22591,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-Clang-x86_64-Release", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2670", - "os:Windows-8.1-SP0", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -24295,12 +22614,20 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", + "dependencies": [ + "Build-Win-MSVC-x86-Debug", + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2670", + "os:Windows-8.1-SP0", + "pool:Skia" + ], + "execution_timeout_ns": 21600000000000, + "expiration_ns": 72000000000000, + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -24312,19 +22639,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "dependencies": [ - "Build-Win-MSVC-x86-Debug", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-E5-2670", - "os:Windows-8.1-SP0", - "pool:Skia" - ], - "execution_timeout_ns": 21600000000000, - "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -24346,23 +22662,6 @@ "version": "version:9" } ], - "command": [ - "recipe_bundle/recipes.bat", - "run", - "--timestamps", - "--workdir", - ".", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)" - ], "dependencies": [ "Build-Win-MSVC-x86-Release", "Housekeeper-PerCommit-BundleRecipes" @@ -24374,22 +22673,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All", + "buildername=Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -24397,6 +22687,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_win.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": { "dependencies": [ "Build-Mac-Clang-arm64-Debug-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -24411,22 +22707,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", + "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -24434,6 +22721,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { "dependencies": [ "Build-Mac-Clang-arm64-Release-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -24448,22 +22741,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All", + "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -24471,6 +22755,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All": { "dependencies": [ "Build-Mac-Clang-arm64-Debug-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -24485,22 +22775,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", + "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -24508,6 +22789,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { "dependencies": [ "Build-Mac-Clang-arm64-Release-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -24522,22 +22809,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", + "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -24545,6 +22823,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All": { "dependencies": [ "Build-Mac-Clang-arm64-Debug-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -24559,22 +22843,13 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", - "max_attempts": 1, - "priority": 0.8 - }, - "Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", + "buildername=Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -24582,6 +22857,12 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "io_timeout_ns": 2400000000000, + "isolate": "test_skia_bundled_unix.isolate", + "max_attempts": 1, + "priority": 0.8 + }, + "Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { "dependencies": [ "Build-Mac-Clang-arm64-Release-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -24596,18 +22877,38 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, + "extra_args": [ + "--workdir", + "../../..", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)" + ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, "Upload-Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "upload_calmbench_results", "repository=<(REPO)", "buildername=Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -24619,8 +22920,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-calmbench" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { "dependencies": [ - "Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All" + "Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24628,16 +22933,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_calmbench_results", "repository=<(REPO)", "buildername=Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -24649,8 +22947,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-calmbench" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { "dependencies": [ - "Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" + "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24658,16 +22960,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", @@ -24679,9 +22974,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24689,16 +22987,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", @@ -24710,9 +23001,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24720,16 +23014,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", @@ -24741,9 +23028,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24751,16 +23041,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", @@ -24772,9 +23055,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24782,16 +23068,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", @@ -24803,9 +23082,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24813,16 +23095,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", @@ -24834,9 +23109,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { "dependencies": [ - "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24844,16 +23122,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", @@ -24865,9 +23136,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24875,16 +23149,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", @@ -24896,9 +23163,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24906,16 +23176,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", @@ -24927,9 +23190,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24937,16 +23203,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", @@ -24958,9 +23217,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { "dependencies": [ - "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24968,16 +23230,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", @@ -24989,9 +23244,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24999,16 +23257,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", @@ -25020,9 +23271,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25030,16 +23284,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", @@ -25051,9 +23298,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { "dependencies": [ - "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25061,16 +23311,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", @@ -25082,9 +23325,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25092,16 +23338,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android", @@ -25113,9 +23352,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench": { "dependencies": [ - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25123,16 +23365,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench", @@ -25144,9 +23379,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench": { "dependencies": [ - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25154,16 +23392,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench", @@ -25175,9 +23406,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { "dependencies": [ - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25185,16 +23419,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan", @@ -25206,9 +23433,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench": { "dependencies": [ - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25216,16 +23446,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench", @@ -25237,9 +23460,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25247,16 +23473,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", @@ -25268,9 +23487,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { "dependencies": [ - "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25278,16 +23500,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", @@ -25299,9 +23514,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android": { "dependencies": [ - "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25309,16 +23527,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", @@ -25330,9 +23541,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench": { "dependencies": [ - "Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25340,16 +23554,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench", @@ -25361,9 +23568,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench": { "dependencies": [ - "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25371,16 +23581,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench", @@ -25392,9 +23595,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench": { "dependencies": [ - "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25402,16 +23608,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench", @@ -25423,9 +23622,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { "dependencies": [ - "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25433,16 +23635,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", @@ -25454,9 +23649,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { "dependencies": [ - "Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25464,16 +23662,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", @@ -25485,9 +23676,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { "dependencies": [ - "Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25495,16 +23689,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", @@ -25516,9 +23703,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { "dependencies": [ - "Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25526,16 +23716,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", @@ -25547,9 +23730,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { "dependencies": [ - "Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25557,16 +23743,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", @@ -25578,9 +23757,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { "dependencies": [ - "Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25588,16 +23770,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", @@ -25609,9 +23784,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { "dependencies": [ - "Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25619,16 +23797,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", @@ -25640,9 +23811,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { "dependencies": [ - "Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25650,16 +23824,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", @@ -25671,9 +23838,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { "dependencies": [ - "Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25681,16 +23851,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -25702,9 +23865,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast": { "dependencies": [ - "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25712,16 +23878,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast", @@ -25733,9 +23892,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER": { "dependencies": [ - "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25743,16 +23905,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER", @@ -25764,9 +23919,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All": { "dependencies": [ - "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25774,16 +23932,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All", @@ -25795,9 +23946,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All": { "dependencies": [ - "Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25805,16 +23959,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All", @@ -25826,9 +23973,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All": { "dependencies": [ - "Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25836,16 +23986,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All", @@ -25857,9 +24000,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All": { "dependencies": [ - "Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25867,16 +24013,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All", @@ -25888,9 +24027,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer": { "dependencies": [ - "Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25898,16 +24040,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer", @@ -25919,9 +24054,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All": { "dependencies": [ - "Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25929,16 +24067,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All", @@ -25950,9 +24081,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan": { "dependencies": [ - "Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25960,16 +24094,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan", @@ -25981,9 +24108,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { "dependencies": [ - "Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25991,16 +24121,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", @@ -26012,9 +24135,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { "dependencies": [ - "Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26022,16 +24148,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", @@ -26043,9 +24162,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All": { "dependencies": [ - "Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26053,16 +24175,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All", @@ -26074,9 +24189,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All": { "dependencies": [ - "Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26084,16 +24202,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All", @@ -26105,9 +24216,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { "dependencies": [ - "Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26115,16 +24229,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -26136,9 +24243,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { "dependencies": [ - "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26146,16 +24256,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -26167,9 +24270,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All": { "dependencies": [ - "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26177,16 +24283,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All", @@ -26198,9 +24297,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE": { "dependencies": [ - "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26208,16 +24310,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE", @@ -26229,9 +24324,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan": { "dependencies": [ - "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26239,16 +24337,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan", @@ -26260,9 +24351,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All": { "dependencies": [ - "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26270,16 +24364,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All", @@ -26291,9 +24378,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE": { "dependencies": [ - "Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26301,16 +24391,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE", @@ -26322,9 +24405,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { "dependencies": [ - "Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26332,16 +24418,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -26353,9 +24432,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE": { "dependencies": [ - "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26363,16 +24445,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE", @@ -26384,9 +24459,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { "dependencies": [ - "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26394,16 +24472,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -26415,9 +24486,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All": { "dependencies": [ - "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26425,16 +24499,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All", @@ -26446,9 +24513,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE": { "dependencies": [ - "Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26456,16 +24526,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE", @@ -26477,9 +24540,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { "dependencies": [ - "Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26487,16 +24553,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", @@ -26508,9 +24567,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE": { "dependencies": [ - "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26518,16 +24580,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE", @@ -26539,9 +24594,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { "dependencies": [ - "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26549,16 +24607,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", @@ -26570,9 +24621,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All": { "dependencies": [ - "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26580,16 +24634,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All", @@ -26601,9 +24648,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE": { "dependencies": [ - "Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26611,16 +24661,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE", @@ -26632,9 +24675,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All": { "dependencies": [ - "Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26642,16 +24688,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All", @@ -26663,9 +24702,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE": { "dependencies": [ - "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26673,16 +24715,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE", @@ -26694,9 +24729,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan": { "dependencies": [ - "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26704,16 +24742,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan", @@ -26725,9 +24756,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All": { "dependencies": [ - "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26735,16 +24769,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All", @@ -26756,9 +24783,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE": { "dependencies": [ - "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26766,16 +24796,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE", @@ -26787,9 +24810,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan": { "dependencies": [ - "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26797,16 +24823,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan", @@ -26818,9 +24837,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All": { "dependencies": [ - "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26828,16 +24850,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", @@ -26849,9 +24864,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE": { "dependencies": [ - "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26859,16 +24877,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", @@ -26880,9 +24891,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan": { "dependencies": [ - "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26890,16 +24904,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", @@ -26911,9 +24918,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All": { "dependencies": [ - "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26921,16 +24931,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All", @@ -26942,9 +24945,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE": { "dependencies": [ - "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26952,16 +24958,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE", @@ -26973,9 +24972,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan": { "dependencies": [ - "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26983,16 +24985,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan", @@ -27004,9 +24999,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All": { "dependencies": [ - "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27014,16 +25012,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -27035,9 +25026,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { "dependencies": [ - "Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27045,16 +25039,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -27066,9 +25053,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All": { "dependencies": [ - "Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27076,16 +25066,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -27097,9 +25080,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All": { "dependencies": [ - "Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27107,16 +25093,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All", @@ -27128,9 +25107,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { "dependencies": [ - "Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27138,16 +25120,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -27159,9 +25134,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { "dependencies": [ - "Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27169,16 +25147,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", @@ -27190,9 +25161,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { "dependencies": [ - "Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27200,16 +25174,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", @@ -27221,9 +25188,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { "dependencies": [ - "Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27231,16 +25201,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", @@ -27252,9 +25215,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-perf" ], + "isolate": "upload_nano_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": { "dependencies": [ - "Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27262,16 +25228,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android", @@ -27283,9 +25242,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27293,16 +25255,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", @@ -27314,9 +25269,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts": { "dependencies": [ - "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27324,16 +25282,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts", @@ -27345,9 +25296,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27355,16 +25309,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android", @@ -27376,9 +25323,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27386,16 +25336,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", @@ -27407,9 +25350,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27417,16 +25363,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android", @@ -27438,9 +25377,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27448,16 +25390,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", @@ -27469,9 +25404,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27479,16 +25417,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android", @@ -27500,9 +25431,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27510,16 +25444,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", @@ -27531,9 +25458,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27541,16 +25471,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android", @@ -27562,9 +25485,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27572,16 +25498,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", @@ -27593,9 +25512,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27603,16 +25525,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android", @@ -27624,9 +25539,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR": { "dependencies": [ - "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27634,16 +25552,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR", @@ -27655,9 +25566,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan": { "dependencies": [ - "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27665,16 +25579,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan", @@ -27686,9 +25593,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27696,16 +25606,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", @@ -27717,9 +25620,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { "dependencies": [ - "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27727,16 +25633,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", @@ -27748,9 +25647,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27758,16 +25660,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android", @@ -27779,9 +25674,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27789,16 +25687,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", @@ -27810,9 +25701,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27820,16 +25714,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android", @@ -27841,9 +25728,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27851,16 +25741,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", @@ -27872,9 +25755,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27882,16 +25768,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android", @@ -27903,9 +25782,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan": { "dependencies": [ - "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27913,16 +25795,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan", @@ -27934,9 +25809,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27944,16 +25822,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", @@ -27965,9 +25836,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { "dependencies": [ - "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27975,16 +25849,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", @@ -27996,9 +25863,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28006,16 +25876,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android", @@ -28027,9 +25890,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28037,16 +25903,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", @@ -28058,9 +25917,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28068,16 +25930,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android", @@ -28089,9 +25944,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28099,16 +25957,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android", @@ -28120,9 +25971,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28130,16 +25984,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android", @@ -28151,9 +25998,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan": { "dependencies": [ - "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28161,16 +26011,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan", @@ -28182,9 +26025,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28192,16 +26038,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", @@ -28213,9 +26052,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { "dependencies": [ - "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28223,16 +26065,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", @@ -28244,9 +26079,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28254,16 +26092,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android", @@ -28275,9 +26106,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan": { "dependencies": [ - "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28285,16 +26119,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan", @@ -28306,9 +26133,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28316,16 +26146,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", @@ -28337,9 +26160,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { "dependencies": [ - "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28347,16 +26173,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", @@ -28368,9 +26187,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28378,16 +26200,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android", @@ -28399,9 +26214,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28409,16 +26227,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", @@ -28430,9 +26241,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android": { "dependencies": [ - "Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28440,16 +26254,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android", @@ -28461,9 +26268,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR": { "dependencies": [ - "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28471,16 +26281,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR", @@ -28492,9 +26295,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan": { "dependencies": [ - "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28502,16 +26308,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan", @@ -28523,9 +26322,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android": { "dependencies": [ - "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28533,16 +26335,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android", @@ -28554,9 +26349,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { "dependencies": [ - "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28564,16 +26362,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_Vulkan", @@ -28585,9 +26376,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": { "dependencies": [ - "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28595,16 +26389,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All", @@ -28616,9 +26403,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { "dependencies": [ - "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28626,16 +26416,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", @@ -28647,9 +26430,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": { "dependencies": [ - "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28657,16 +26443,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All", @@ -28678,9 +26457,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { "dependencies": [ - "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28688,16 +26470,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", @@ -28709,9 +26484,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All": { "dependencies": [ - "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28719,16 +26497,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", @@ -28740,9 +26511,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { "dependencies": [ - "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28750,16 +26524,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", @@ -28771,9 +26538,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All": { "dependencies": [ - "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28781,16 +26551,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All", @@ -28802,9 +26565,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { "dependencies": [ - "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28812,16 +26578,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", @@ -28833,9 +26592,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": { "dependencies": [ - "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28843,16 +26605,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All", @@ -28864,9 +26619,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { "dependencies": [ - "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28874,16 +26632,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", @@ -28895,9 +26646,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All": { "dependencies": [ - "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28905,16 +26659,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", @@ -28926,9 +26673,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { "dependencies": [ - "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28936,16 +26686,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", @@ -28957,9 +26700,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All": { "dependencies": [ - "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28967,16 +26713,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All", @@ -28988,9 +26727,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { "dependencies": [ - "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28998,16 +26740,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", @@ -29019,9 +26754,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All": { "dependencies": [ - "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29029,16 +26767,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All", @@ -29050,9 +26781,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { "dependencies": [ - "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29060,16 +26794,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", @@ -29081,9 +26808,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All": { "dependencies": [ - "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29091,16 +26821,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All", @@ -29112,9 +26835,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29122,16 +26848,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All", @@ -29143,9 +26862,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-NativeFonts": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-NativeFonts" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29153,16 +26875,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-NativeFonts": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-NativeFonts", @@ -29174,9 +26889,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-NativeFonts", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29184,16 +26902,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", @@ -29205,9 +26916,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29215,16 +26929,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack", @@ -29236,17 +26943,7 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], - "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "upload_dm_results.isolate", "priority": 0.8 }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-Shard_12-Coverage": { @@ -29257,23 +26954,6 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", - "--workdir", - ".", - "upload_coverage_results", - "repository=<(REPO)", - "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-Shard_12-Coverage", - "swarm_out_dir=${ISOLATED_OUTDIR}", - "revision=<(REVISION)", - "patch_repo=<(PATCH_REPO)", - "patch_storage=<(PATCH_STORAGE)", - "patch_issue=<(ISSUE)", - "patch_set=<(PATCHSET)", - "gs_bucket=skia-coverage" - ], "dependencies": [ "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_00_12-Coverage", "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_01_12-Coverage", @@ -29295,16 +26975,36 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", + "extra_args": [ + "--workdir", + "../../..", + "upload_coverage_results", + "repository=<(REPO)", + "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-Shard_12-Coverage", + "swarm_out_dir=${ISOLATED_OUTDIR}", + "revision=<(REVISION)", + "patch_repo=<(PATCH_REPO)", + "patch_storage=<(PATCH_STORAGE)", + "patch_issue=<(ISSUE)", + "patch_set=<(PATCHSET)", + "gs_bucket=skia-coverage" + ], + "isolate": "upload_coverage_results.isolate", "priority": 0.8 }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -29316,9 +27016,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29326,16 +27029,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast", @@ -29347,9 +27043,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SKNX_NO_SIMD": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SKNX_NO_SIMD" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29357,16 +27056,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SKNX_NO_SIMD": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SKNX_NO_SIMD", @@ -29378,9 +27070,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE2": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SKNX_NO_SIMD", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE2" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29388,16 +27083,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE2": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE2", @@ -29409,9 +27097,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE41": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE2", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE41" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29419,16 +27110,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE41": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE41", @@ -29440,9 +27124,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE41", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29450,16 +27137,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER", @@ -29471,9 +27151,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29481,16 +27164,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All", @@ -29502,9 +27178,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29512,16 +27191,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All", @@ -29533,9 +27205,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All": { "dependencies": [ - "Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29543,16 +27218,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All", @@ -29564,9 +27232,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All": { "dependencies": [ - "Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29574,16 +27245,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All", @@ -29595,9 +27259,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All": { "dependencies": [ - "Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29605,16 +27272,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All", @@ -29626,9 +27286,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All": { "dependencies": [ - "Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29636,16 +27299,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All", @@ -29657,9 +27313,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All-NativeFonts": { "dependencies": [ - "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All-NativeFonts" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29667,16 +27326,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All-NativeFonts": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All-NativeFonts", @@ -29688,9 +27340,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All": { "dependencies": [ - "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All-NativeFonts", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29698,16 +27353,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All", @@ -29719,9 +27367,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All": { "dependencies": [ - "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29729,16 +27380,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All", @@ -29750,9 +27394,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer": { "dependencies": [ - "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29760,16 +27407,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer", @@ -29781,9 +27421,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All": { "dependencies": [ - "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29791,16 +27434,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All", @@ -29812,9 +27448,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All": { "dependencies": [ - "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29822,16 +27461,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All", @@ -29843,9 +27475,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan": { "dependencies": [ - "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29853,16 +27488,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan", @@ -29874,9 +27502,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All": { "dependencies": [ - "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29884,16 +27515,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All", @@ -29905,9 +27529,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan": { "dependencies": [ - "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29915,16 +27542,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan", @@ -29936,9 +27556,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All": { "dependencies": [ - "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29946,16 +27569,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", @@ -29967,9 +27583,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan": { "dependencies": [ - "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29977,16 +27596,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", @@ -29998,9 +27610,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { "dependencies": [ - "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30008,16 +27623,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", @@ -30029,9 +27637,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { "dependencies": [ - "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30039,16 +27650,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", @@ -30060,9 +27664,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All": { "dependencies": [ - "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30070,16 +27677,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All", @@ -30091,9 +27691,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All": { "dependencies": [ - "Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30101,16 +27704,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All", @@ -30122,9 +27718,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All": { "dependencies": [ - "Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30132,16 +27731,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All", @@ -30153,9 +27745,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All": { "dependencies": [ - "Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30163,16 +27758,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All", @@ -30184,9 +27772,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { "dependencies": [ - "Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30194,16 +27785,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", @@ -30215,17 +27799,7 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], - "dependencies": [ - "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "upload_dm_results.isolate", "priority": 0.8 }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Coverage": { @@ -30236,12 +27810,19 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Coverage", + "Build-Debian9-Clang-x86_64-Debug-Coverage" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "upload_coverage_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Coverage", @@ -30253,9 +27834,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-coverage" ], + "isolate": "upload_coverage_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { "dependencies": [ - "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Coverage", - "Build-Debian9-Clang-x86_64-Debug-Coverage" + "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30263,16 +27847,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", @@ -30284,17 +27861,7 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], - "dependencies": [ - "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "upload_dm_results.isolate", "priority": 0.8 }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan_Coverage": { @@ -30305,12 +27872,19 @@ "version": "version:10" } ], - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "dependencies": [ + "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Vulkan_Coverage", + "Build-Debian9-Clang-x86_64-Debug-Vulkan_Coverage" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "extra_args": [ "--workdir", - ".", + "../../..", "upload_coverage_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan_Coverage", @@ -30322,9 +27896,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-coverage" ], + "isolate": "upload_coverage_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { "dependencies": [ - "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Vulkan_Coverage", - "Build-Debian9-Clang-x86_64-Debug-Vulkan_Coverage" + "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30332,16 +27909,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -30353,9 +27923,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { "dependencies": [ - "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30363,16 +27936,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -30384,9 +27950,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All": { "dependencies": [ - "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30394,16 +27963,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All", @@ -30415,9 +27977,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30425,16 +27990,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE", @@ -30446,9 +28004,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30456,16 +28017,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan", @@ -30477,9 +28031,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All": { "dependencies": [ - "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30487,16 +28044,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All", @@ -30508,9 +28058,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30518,16 +28071,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE", @@ -30539,9 +28085,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30549,16 +28098,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan", @@ -30570,9 +28112,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All": { "dependencies": [ - "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30580,16 +28125,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All", @@ -30601,9 +28139,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All": { "dependencies": [ - "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30611,16 +28152,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All", @@ -30632,9 +28166,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30642,16 +28179,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE", @@ -30663,9 +28193,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { "dependencies": [ - "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30673,16 +28206,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", @@ -30694,9 +28220,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30704,16 +28233,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE", @@ -30725,9 +28247,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30735,16 +28260,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", @@ -30756,9 +28274,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { "dependencies": [ - "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30766,16 +28287,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -30787,9 +28301,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30797,16 +28314,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE", @@ -30818,9 +28328,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30828,16 +28341,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -30849,9 +28355,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts": { "dependencies": [ - "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30859,16 +28368,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts", @@ -30880,9 +28382,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All": { "dependencies": [ - "Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30890,16 +28395,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All", @@ -30911,9 +28409,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30921,16 +28422,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE", @@ -30942,9 +28436,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All": { "dependencies": [ - "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30952,16 +28449,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All", @@ -30973,9 +28463,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30983,16 +28476,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE", @@ -31004,9 +28490,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All": { "dependencies": [ - "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31014,16 +28503,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", @@ -31035,9 +28517,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31045,16 +28530,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE", @@ -31066,9 +28544,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31076,16 +28557,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", @@ -31097,9 +28571,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { "dependencies": [ - "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31107,16 +28584,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", @@ -31128,9 +28598,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31138,16 +28611,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE", @@ -31159,9 +28625,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31169,16 +28638,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", @@ -31190,9 +28652,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All": { "dependencies": [ - "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31200,16 +28665,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All", @@ -31221,9 +28679,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31231,16 +28692,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE", @@ -31252,9 +28706,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All": { "dependencies": [ - "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31262,16 +28719,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All", @@ -31283,9 +28733,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31293,16 +28746,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE", @@ -31314,9 +28760,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All": { "dependencies": [ - "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31324,16 +28773,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All", @@ -31345,9 +28787,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31355,16 +28800,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE", @@ -31376,9 +28814,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31386,16 +28827,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan", @@ -31407,9 +28841,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31417,16 +28854,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All", @@ -31438,9 +28868,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31448,16 +28881,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE", @@ -31469,9 +28895,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31479,16 +28908,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan", @@ -31500,9 +28922,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31510,16 +28935,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All", @@ -31531,9 +28949,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31541,16 +28962,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE", @@ -31562,9 +28976,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31572,16 +28989,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan", @@ -31593,9 +29003,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31603,16 +29016,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All", @@ -31624,9 +29030,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31634,16 +29043,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE", @@ -31655,9 +29057,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31665,16 +29070,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan", @@ -31686,9 +29084,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All": { "dependencies": [ - "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31696,16 +29097,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All", @@ -31717,9 +29111,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31727,16 +29124,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE", @@ -31748,9 +29138,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31758,16 +29151,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan", @@ -31779,9 +29165,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All": { "dependencies": [ - "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31789,16 +29178,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", @@ -31810,9 +29192,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31820,16 +29205,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", @@ -31841,9 +29219,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31851,16 +29232,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", @@ -31872,9 +29246,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All": { "dependencies": [ - "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31882,16 +29259,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All", @@ -31903,9 +29273,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31913,16 +29286,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE", @@ -31934,9 +29300,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31944,16 +29313,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan", @@ -31965,9 +29327,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All": { "dependencies": [ - "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -31975,16 +29340,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All", @@ -31996,9 +29354,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE": { "dependencies": [ - "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32006,16 +29367,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE", @@ -32027,9 +29381,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan": { "dependencies": [ - "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32037,16 +29394,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan", @@ -32058,9 +29408,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All": { "dependencies": [ - "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32068,16 +29421,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All", @@ -32089,9 +29435,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { "dependencies": [ - "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32099,16 +29448,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", @@ -32120,9 +29462,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All": { "dependencies": [ - "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32130,16 +29475,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -32151,9 +29489,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { "dependencies": [ - "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32161,16 +29502,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -32182,9 +29516,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { "dependencies": [ - "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32192,16 +29529,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All", @@ -32213,9 +29543,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA": { "dependencies": [ - "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32223,16 +29556,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA", @@ -32244,9 +29570,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA": { "dependencies": [ - "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32254,16 +29583,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA", @@ -32275,9 +29597,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA": { "dependencies": [ - "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32285,16 +29610,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA", @@ -32306,9 +29624,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All": { "dependencies": [ - "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32316,16 +29637,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -32337,9 +29651,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FAAA": { "dependencies": [ - "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FAAA" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32347,16 +29664,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FAAA": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FAAA", @@ -32368,9 +29678,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FDAA": { "dependencies": [ - "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FAAA", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FDAA" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32378,16 +29691,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FDAA": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FDAA", @@ -32399,9 +29705,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FSAA": { "dependencies": [ - "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FDAA", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FSAA" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32409,16 +29718,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FSAA": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FSAA", @@ -32430,9 +29732,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All": { "dependencies": [ - "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FSAA", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32440,16 +29745,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All", @@ -32461,9 +29759,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Release-All": { "dependencies": [ - "Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32471,16 +29772,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Release-All", @@ -32492,9 +29786,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All": { "dependencies": [ - "Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32502,16 +29799,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All", @@ -32523,9 +29813,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All": { "dependencies": [ - "Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32533,16 +29826,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All", @@ -32554,9 +29840,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { "dependencies": [ - "Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32564,16 +29853,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", @@ -32585,9 +29867,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { "dependencies": [ - "Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32595,16 +29880,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -32616,9 +29894,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All": { "dependencies": [ - "Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32626,16 +29907,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All", @@ -32647,9 +29921,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts": { "dependencies": [ - "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32657,16 +29934,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts", @@ -32678,9 +29948,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts_GDI": { "dependencies": [ - "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts_GDI" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32688,16 +29961,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts_GDI": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts_GDI", @@ -32709,9 +29975,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Release-All": { "dependencies": [ - "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts_GDI", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32719,16 +29988,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-Clang-Golo-CPU-AVX-x86_64-Release-All", @@ -32740,9 +30002,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win7-MSVC-Golo-CPU-AVX-x86-Debug-All": { "dependencies": [ - "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win7-MSVC-Golo-CPU-AVX-x86-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32750,16 +30015,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win7-MSVC-Golo-CPU-AVX-x86-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-MSVC-Golo-CPU-AVX-x86-Debug-All", @@ -32771,9 +30029,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win7-MSVC-Golo-CPU-AVX-x86-Release-All": { "dependencies": [ - "Test-Win7-MSVC-Golo-CPU-AVX-x86-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win7-MSVC-Golo-CPU-AVX-x86-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32781,16 +30042,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win7-MSVC-Golo-CPU-AVX-x86-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-MSVC-Golo-CPU-AVX-x86-Release-All", @@ -32802,9 +30056,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All": { "dependencies": [ - "Test-Win7-MSVC-Golo-CPU-AVX-x86-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32812,16 +30069,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All", @@ -32833,9 +30083,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win8-Clang-Golo-CPU-AVX-x86_64-Release-All": { "dependencies": [ - "Test-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win8-Clang-Golo-CPU-AVX-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32843,16 +30096,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win8-Clang-Golo-CPU-AVX-x86_64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win8-Clang-Golo-CPU-AVX-x86_64-Release-All", @@ -32864,9 +30110,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All": { "dependencies": [ - "Test-Win8-Clang-Golo-CPU-AVX-x86_64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32874,16 +30123,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All", @@ -32895,9 +30137,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All": { "dependencies": [ - "Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32905,16 +30150,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All", @@ -32926,9 +30164,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": { "dependencies": [ - "Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32936,16 +30177,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All", @@ -32957,9 +30191,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { "dependencies": [ - "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32967,16 +30204,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", @@ -32988,9 +30218,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All": { "dependencies": [ - "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -32998,16 +30231,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All", @@ -33019,9 +30245,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { "dependencies": [ - "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -33029,16 +30258,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", @@ -33050,9 +30272,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All": { "dependencies": [ - "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -33060,16 +30285,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", @@ -33081,9 +30299,12 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], + "isolate": "upload_dm_results.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { "dependencies": [ - "Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", - "Housekeeper-PerCommit-BundleRecipes" + "Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -33091,16 +30312,9 @@ "os:Debian-9.2", "pool:Skia" ], - "isolate": "swarm_recipe.isolate", - "priority": 0.8 - }, - "Upload-Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { - "command": [ - "recipe_bundle/recipes", - "run", - "--timestamps", + "extra_args": [ "--workdir", - ".", + "../../..", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", @@ -33112,17 +30326,7 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], - "dependencies": [ - "Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", - "Housekeeper-PerCommit-BundleRecipes" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "isolate": "swarm_recipe.isolate", + "isolate": "upload_dm_results.isolate", "priority": 0.8 } } diff --git a/infra/bots/test_skia.isolate b/infra/bots/test_skia.isolate new file mode 100644 index 0000000000..b220aa5964 --- /dev/null +++ b/infra/bots/test_skia.isolate @@ -0,0 +1,13 @@ +{ + 'includes': [ + 'android_bin.isolate', + 'ios_bin.isolate', + 'resources.isolate', + 'swarm_recipe.isolate', + ], + 'variables': { + 'files': [ + '../../../.gclient', + ], + }, +} diff --git a/infra/bots/test_skia_bundled.isolate b/infra/bots/test_skia_bundled.isolate index 8504083377..dbfe4c3f79 100644 --- a/infra/bots/test_skia_bundled.isolate +++ b/infra/bots/test_skia_bundled.isolate @@ -4,10 +4,10 @@ 'assets.isolate', 'ios_bin.isolate', 'resources.isolate', - 'swarm_recipe.isolate', ], 'variables': { 'files': [ + '../../../.gclient', '../../tools/valgrind.supp', ], }, diff --git a/infra/bots/test_skia_bundled_unix.isolate b/infra/bots/test_skia_bundled_unix.isolate new file mode 100644 index 0000000000..f3be6ea780 --- /dev/null +++ b/infra/bots/test_skia_bundled_unix.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'test_skia_bundled.isolate', + 'swarm_recipe_bundled_unix.isolate', + ], +} diff --git a/infra/bots/test_skia_bundled_win.isolate b/infra/bots/test_skia_bundled_win.isolate new file mode 100644 index 0000000000..cdffa56a68 --- /dev/null +++ b/infra/bots/test_skia_bundled_win.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'test_skia_bundled.isolate', + 'swarm_recipe_bundled_win.isolate', + ], +} diff --git a/infra/bots/upload_coverage_results.isolate b/infra/bots/upload_coverage_results.isolate new file mode 100644 index 0000000000..767fa3af9e --- /dev/null +++ b/infra/bots/upload_coverage_results.isolate @@ -0,0 +1,10 @@ +{ + 'includes': [ + 'swarm_recipe.isolate', + ], + 'variables': { + 'files': [ + '../../../.gclient', + ], + }, +} diff --git a/infra/bots/upload_dm_results.isolate b/infra/bots/upload_dm_results.isolate new file mode 100644 index 0000000000..767fa3af9e --- /dev/null +++ b/infra/bots/upload_dm_results.isolate @@ -0,0 +1,10 @@ +{ + 'includes': [ + 'swarm_recipe.isolate', + ], + 'variables': { + 'files': [ + '../../../.gclient', + ], + }, +} diff --git a/infra/bots/upload_nano_results.isolate b/infra/bots/upload_nano_results.isolate new file mode 100644 index 0000000000..767fa3af9e --- /dev/null +++ b/infra/bots/upload_nano_results.isolate @@ -0,0 +1,10 @@ +{ + 'includes': [ + 'swarm_recipe.isolate', + ], + 'variables': { + 'files': [ + '../../../.gclient', + ], + }, +} |