From 66db75da67fb4c75207c2e495765e1e74584e3b1 Mon Sep 17 00:00:00 2001 From: Eric Boren Date: Thu, 7 Dec 2017 09:21:07 -0500 Subject: [PATCH] [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 Reviewed-by: Kevin Lubick --- infra/bots/bundle_recipes.isolate | 14 - infra/bots/bundle_recipes.sh | 13 + infra/bots/compile_skia.isolate | 10 - infra/bots/coverage_skia.isolate | 6 - infra/bots/ct_skps_skia.isolate | 6 - infra/bots/empty.isolate | 1 + infra/bots/gen_tasks.go | 380 +- infra/bots/housekeeper_skia.isolate | 10 - infra/bots/infra_skia.isolate | 10 - infra/bots/infrabots.isolate | 1 - infra/bots/isolate_ndk_linux.isolate | 7 - infra/bots/isolate_skimage.isolate | 7 - infra/bots/isolate_skp.isolate | 7 - infra/bots/isolate_svg.isolate | 7 - infra/bots/isolate_win_toolchain.isolate | 7 - infra/bots/isolate_win_vulkan_sdk.isolate | 7 - infra/bots/meta_config.isolate | 5 - infra/bots/perf_skia.isolate | 13 - infra/bots/perf_skia_bundled.isolate | 2 +- infra/bots/perf_skia_bundled_unix.isolate | 6 - infra/bots/perf_skia_bundled_win.isolate | 6 - infra/bots/presubmit_skia.isolate | 10 - .../BundleRecipes.json | 61 - infra/bots/recipes/bundle_recipes.py | 40 - infra/bots/skpbench_skia.isolate | 11 - infra/bots/skpbench_skia_bundled.isolate | 2 +- infra/bots/skpbench_skia_bundled_unix.isolate | 6 - infra/bots/skpbench_skia_bundled_win.isolate | 6 - infra/bots/swarm_recipe.isolate | 4 +- infra/bots/swarm_recipe_bundled_unix.isolate | 7 - infra/bots/swarm_recipe_bundled_win.isolate | 7 - infra/bots/tasks.json | 18886 +++++++++------- infra/bots/test_skia.isolate | 13 - infra/bots/test_skia_bundled.isolate | 2 +- infra/bots/test_skia_bundled_unix.isolate | 6 - infra/bots/test_skia_bundled_win.isolate | 6 - infra/bots/upload_coverage_results.isolate | 10 - infra/bots/upload_dm_results.isolate | 10 - infra/bots/upload_nano_results.isolate | 10 - 39 files changed, 11053 insertions(+), 8569 deletions(-) delete mode 100644 infra/bots/bundle_recipes.isolate create mode 100755 infra/bots/bundle_recipes.sh delete mode 100644 infra/bots/compile_skia.isolate delete mode 100644 infra/bots/coverage_skia.isolate delete mode 100644 infra/bots/ct_skps_skia.isolate create mode 100644 infra/bots/empty.isolate delete mode 100644 infra/bots/housekeeper_skia.isolate delete mode 100644 infra/bots/infra_skia.isolate delete mode 100644 infra/bots/isolate_ndk_linux.isolate delete mode 100644 infra/bots/isolate_skimage.isolate delete mode 100644 infra/bots/isolate_skp.isolate delete mode 100644 infra/bots/isolate_svg.isolate delete mode 100644 infra/bots/isolate_win_toolchain.isolate delete mode 100644 infra/bots/isolate_win_vulkan_sdk.isolate delete mode 100644 infra/bots/meta_config.isolate delete mode 100644 infra/bots/perf_skia.isolate delete mode 100644 infra/bots/perf_skia_bundled_unix.isolate delete mode 100644 infra/bots/perf_skia_bundled_win.isolate delete mode 100644 infra/bots/presubmit_skia.isolate delete mode 100644 infra/bots/recipes/bundle_recipes.expected/BundleRecipes.json delete mode 100644 infra/bots/recipes/bundle_recipes.py delete mode 100644 infra/bots/skpbench_skia.isolate delete mode 100644 infra/bots/skpbench_skia_bundled_unix.isolate delete mode 100644 infra/bots/skpbench_skia_bundled_win.isolate delete mode 100644 infra/bots/swarm_recipe_bundled_unix.isolate delete mode 100644 infra/bots/swarm_recipe_bundled_win.isolate delete mode 100644 infra/bots/test_skia.isolate delete mode 100644 infra/bots/test_skia_bundled_unix.isolate delete mode 100644 infra/bots/test_skia_bundled_win.isolate delete mode 100644 infra/bots/upload_coverage_results.isolate delete mode 100644 infra/bots/upload_dm_results.isolate delete mode 100644 infra/bots/upload_nano_results.isolate diff --git a/infra/bots/bundle_recipes.isolate b/infra/bots/bundle_recipes.isolate deleted file mode 100644 index 3faa6f70a1..0000000000 --- a/infra/bots/bundle_recipes.isolate +++ /dev/null @@ -1,14 +0,0 @@ -{ - '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 new file mode 100755 index 0000000000..989ec79661 --- /dev/null +++ b/infra/bots/bundle_recipes.sh @@ -0,0 +1,13 @@ +#!/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 deleted file mode 100644 index 767fa3af9e..0000000000 --- a/infra/bots/compile_skia.isolate +++ /dev/null @@ -1,10 +0,0 @@ -{ - 'includes': [ - 'swarm_recipe.isolate', - ], - 'variables': { - 'files': [ - '../../../.gclient', - ], - }, -} diff --git a/infra/bots/coverage_skia.isolate b/infra/bots/coverage_skia.isolate deleted file mode 100644 index 856e2a660a..0000000000 --- a/infra/bots/coverage_skia.isolate +++ /dev/null @@ -1,6 +0,0 @@ -{ - 'includes': [ - 'skia_repo.isolate', - 'test_skia.isolate', - ], -} diff --git a/infra/bots/ct_skps_skia.isolate b/infra/bots/ct_skps_skia.isolate deleted file mode 100644 index 4172bae45b..0000000000 --- a/infra/bots/ct_skps_skia.isolate +++ /dev/null @@ -1,6 +0,0 @@ -{ - 'includes': [ - 'skia_repo.isolate', - 'swarm_recipe.isolate', - ], -} diff --git a/infra/bots/empty.isolate b/infra/bots/empty.isolate new file mode 100644 index 0000000000..0967ef424b --- /dev/null +++ b/infra/bots/empty.isolate @@ -0,0 +1 @@ +{} diff --git a/infra/bots/gen_tasks.go b/infra/bots/gen_tasks.go index c674d263bf..18b4fa8083 100644 --- a/infra/bots/gen_tasks.go +++ b/infra/bots/gen_tasks.go @@ -77,17 +77,27 @@ var ( jobNameSchema *JobNameSchema // Git 2.13. - 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"), + 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", + }, } + 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.") assetsDir = flag.String("assets_dir", "", "Directory containing assets.") @@ -364,6 +374,14 @@ 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) @@ -382,14 +400,15 @@ 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: []*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), + CipdPackages: CIPD_PKGS_GIT, + Command: []string{ + "/bin/bash", "skia/infra/bots/bundle_recipes.sh", specs.PLACEHOLDER_ISOLATED_OUTDIR, }, - Isolate: relpath("bundle_recipes.isolate"), + Dimensions: linuxGceDimensions(), + EnvPrefixes: map[string][]string{ + "PATH": []string{"cipd_bin_packages", "cipd_bin_packages/bin"}, + }, + Isolate: relpath("swarm_recipe.isolate"), Priority: 0.7, }) return BUNDLE_RECIPES_NAME @@ -403,45 +422,47 @@ func useBundledRecipes(parts map[string]string) bool { } type isolateAssetCfg struct { - isolateFile string - cipdPkg string + cipdPkg string + path string } var ISOLATE_ASSET_MAPPING = map[string]isolateAssetCfg{ ISOLATE_SKIMAGE_NAME: { - isolateFile: "isolate_skimage.isolate", - cipdPkg: "skimage", + cipdPkg: "skimage", + path: "skimage", }, ISOLATE_SKP_NAME: { - isolateFile: "isolate_skp.isolate", - cipdPkg: "skp", + cipdPkg: "skp", + path: "skp", }, ISOLATE_SVG_NAME: { - isolateFile: "isolate_svg.isolate", - cipdPkg: "svg", + cipdPkg: "svg", + path: "svg", }, ISOLATE_NDK_LINUX_NAME: { - isolateFile: "isolate_ndk_linux.isolate", - cipdPkg: "android_ndk_linux", + cipdPkg: "android_ndk_linux", + path: "android_ndk_linux", }, ISOLATE_WIN_TOOLCHAIN_NAME: { - isolateFile: "isolate_win_toolchain.isolate", - cipdPkg: "win_toolchain", + cipdPkg: "win_toolchain", + path: "t", }, ISOLATE_WIN_VULKAN_SDK_NAME: { - isolateFile: "isolate_win_vulkan_sdk.isolate", - cipdPkg: "win_vulkan_sdk", + cipdPkg: "win_vulkan_sdk", + path: "win_vulkan_sdk", }, } -// bundleRecipes generates the task to bundle and isolate the recipes. +// isolateCIPDAsset generates a task to isolate the given CIPD asset. func isolateCIPDAsset(b *specs.TasksCfgBuilder, name string) string { + asset := ISOLATE_ASSET_MAPPING[name] b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{ - b.MustGetCipdPackageFromAsset(ISOLATE_ASSET_MAPPING[name].cipdPkg), + b.MustGetCipdPackageFromAsset(asset.cipdPkg), }, + Command: []string{"/bin/cp", "-rL", asset.path, "${ISOLATED_OUTDIR}"}, Dimensions: linuxGceDimensions(), - Isolate: relpath(ISOLATE_ASSET_MAPPING[name].isolateFile), + Isolate: "empty.isolate", Priority: 0.7, }) return name @@ -476,7 +497,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{} + deps := []string{BUNDLE_RECIPES_NAME} // Android bots require a toolchain. if strings.Contains(name, "Android") { @@ -525,10 +546,9 @@ func compile(b *specs.TasksCfgBuilder, name string, parts map[string]string) str // Add the task. b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: pkgs, - Dimensions: dimensions, - Dependencies: deps, - ExtraArgs: []string{ - "--workdir", "../../..", "compile", + Command: []string{ + recipes(parts), "run", "--timestamps", + "--workdir", ".", "compile", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -538,8 +558,10 @@ 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), }, - Isolate: relpath("compile_skia.isolate"), - Priority: 0.8, + Dependencies: deps, + Dimensions: dimensions, + Isolate: relpath("swarm_recipe.isolate"), + Priority: 0.8, }) // All compile tasks are runnable as their own Job. Assert that the Job // is listed in JOBS. @@ -552,13 +574,12 @@ 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) string { +func recreateSKPs(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { b.MustAddTask(name, &specs.TaskSpec{ - CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("go")}, - Dimensions: linuxGceDimensions(), - ExecutionTimeout: 4 * time.Hour, - ExtraArgs: []string{ - "--workdir", "../../..", "recreate_skps", + CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("go")}, + Command: []string{ + recipes(parts), "run", "--timestamps", + "--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), @@ -568,9 +589,12 @@ func recreateSKPs(b *specs.TasksCfgBuilder, name string) string { fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - IoTimeout: 40 * time.Minute, - Isolate: relpath("compile_skia.isolate"), - Priority: 0.8, + Dependencies: []string{BUNDLE_RECIPES_NAME}, + Dimensions: linuxGceDimensions(), + ExecutionTimeout: 4 * time.Hour, + IoTimeout: 40 * time.Minute, + Isolate: relpath("swarm_recipe.isolate"), + Priority: 0.8, }) return name } @@ -578,12 +602,12 @@ func recreateSKPs(b *specs.TasksCfgBuilder, name 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) string { +func updateMetaConfig(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{}, - Dimensions: linuxGceDimensions(), - ExtraArgs: []string{ - "--workdir", "../../..", "update_meta_config", + Command: []string{ + recipes(parts), "run", "--timestamps", + "--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), @@ -593,24 +617,22 @@ func updateMetaConfig(b *specs.TasksCfgBuilder, name string) string { fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Isolate: relpath("meta_config.isolate"), - Priority: 0.8, + Dependencies: []string{BUNDLE_RECIPES_NAME}, + Dimensions: linuxGceDimensions(), + Isolate: relpath("swarm_recipe.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) string { +func ctSKPs(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{}, - Dimensions: []string{ - "pool:SkiaCT", - fmt.Sprintf("os:%s", DEFAULT_OS_LINUX_GCE), - }, - ExecutionTimeout: 24 * time.Hour, - ExtraArgs: []string{ - "--workdir", "../../..", "ct_skps", + Command: []string{ + recipes(parts), "run", "--timestamps", + "--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), @@ -620,21 +642,27 @@ func ctSKPs(b *specs.TasksCfgBuilder, name string) string { fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - IoTimeout: time.Hour, - Isolate: relpath("ct_skps_skia.isolate"), - Priority: 0.8, + 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, }) return name } // checkGeneratedFiles verifies that no generated SKSL files have been edited // by hand. -func checkGeneratedFiles(b *specs.TasksCfgBuilder, name string) string { +func checkGeneratedFiles(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{}, - Dimensions: linuxGceDimensions(), - ExtraArgs: []string{ - "--workdir", "../../..", "check_generated_files", + Command: []string{ + recipes(parts), "run", "--timestamps", + "--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), @@ -644,21 +672,22 @@ func checkGeneratedFiles(b *specs.TasksCfgBuilder, name string) string { fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Isolate: relpath("compile_skia.isolate"), - Priority: 0.8, + Dependencies: []string{BUNDLE_RECIPES_NAME}, + Dimensions: linuxGceDimensions(), + Isolate: relpath("swarm_recipe.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) string { +func housekeeper(b *specs.TasksCfgBuilder, name, compileTaskName string, parts map[string]string) string { b.MustAddTask(name, &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("go")}, - Dependencies: []string{compileTaskName}, - Dimensions: linuxGceDimensions(), - ExtraArgs: []string{ - "--workdir", "../../..", "housekeeper", + Command: []string{ + recipes(parts), "run", "--timestamps", + "--workdir", ".", "housekeeper", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -668,20 +697,21 @@ func housekeeper(b *specs.TasksCfgBuilder, name, compileTaskName string) string fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Isolate: relpath("housekeeper_skia.isolate"), - Priority: 0.8, + Dependencies: []string{compileTaskName, BUNDLE_RECIPES_NAME}, + Dimensions: linuxGceDimensions(), + Isolate: relpath("swarm_recipe.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) string { +func infra(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { b.MustAddTask(name, &specs.TaskSpec{ - CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("go")}, - Dimensions: linuxGceDimensions(), - ExtraArgs: []string{ - "--workdir", "../../..", "infra", + Command: []string{ + recipes(parts), "run", "--timestamps", + "--workdir", ".", "infra", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -691,8 +721,11 @@ func infra(b *specs.TasksCfgBuilder, name string) string { fmt.Sprintf("patch_issue=%s", specs.PLACEHOLDER_ISSUE), fmt.Sprintf("patch_set=%s", specs.PLACEHOLDER_PATCHSET), }, - Isolate: relpath("infra_skia.isolate"), - Priority: 0.8, + CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("go")}, + Dependencies: []string{BUNDLE_RECIPES_NAME}, + Dimensions: linuxGceDimensions(), + Isolate: relpath("swarm_recipe.isolate"), + Priority: 0.8, }) return name } @@ -702,9 +735,9 @@ func infra(b *specs.TasksCfgBuilder, name string) string { func calmbench(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { s := &specs.TaskSpec{ CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("clang_linux")}, - Dimensions: swarmDimensions(parts), - ExtraArgs: []string{ - "--workdir", "../../..", "calmbench", + Command: []string{ + recipes(parts), "run", "--timestamps", + "--workdir", ".", "calmbench", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -714,8 +747,9 @@ 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), }, - Isolate: relpath("infra_skia.isolate"), - Priority: 0.8, + Dimensions: swarmDimensions(parts), + Isolate: relpath("swarm_recipe.isolate"), + Priority: 0.8, } s.Dependencies = append(s.Dependencies, ISOLATE_SKP_NAME, ISOLATE_SVG_NAME) @@ -726,10 +760,9 @@ 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{ - Dependencies: []string{name}, - Dimensions: linuxGceDimensions(), - ExtraArgs: []string{ - "--workdir", "../../..", "upload_calmbench_results", + Command: []string{ + RECIPE_BUNDLE_UNIX, "run", "--timestamps", + "--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), @@ -740,9 +773,10 @@ 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), }, - // We're using the same isolate as upload_nano_results - Isolate: relpath("upload_nano_results.isolate"), - Priority: 0.8, + Dependencies: []string{name}, + Dimensions: linuxGceDimensions(), + Isolate: relpath("swarm_recipe.isolate"), + Priority: 0.8, }) return uploadName } @@ -768,13 +802,10 @@ 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, - Dependencies: []string{compileTaskName}, - Dimensions: swarmDimensions(parts), - ExecutionTimeout: 4 * time.Hour, - Expiration: 20 * time.Hour, - ExtraArgs: []string{ - "--workdir", "../../..", "test", + CipdPackages: pkgs, + Command: []string{ + recipes(parts), "run", "--timestamps", + "--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), @@ -785,18 +816,14 @@ 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), }, - 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") - } + 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, } if deps := getIsolatedCIPDDeps(parts); len(deps) > 0 { s.Dependencies = append(s.Dependencies, deps...) @@ -824,10 +851,9 @@ 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{ - Dependencies: []string{name}, - Dimensions: linuxGceDimensions(), - ExtraArgs: []string{ - "--workdir", "../../..", "upload_dm_results", + Command: []string{ + RECIPE_BUNDLE_UNIX, "run", "--timestamps", + "--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), @@ -838,8 +864,10 @@ 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), }, - Isolate: relpath("upload_dm_results.isolate"), - Priority: 0.8, + Dependencies: []string{name, BUNDLE_RECIPES_NAME}, + Dimensions: linuxGceDimensions(), + Isolate: relpath("swarm_recipe.isolate"), + Priority: 0.8, }) return uploadName } @@ -864,13 +892,10 @@ 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, - Dependencies: []string{compileTaskName}, - Dimensions: swarmDimensions(parts), - ExecutionTimeout: 4 * time.Hour, - Expiration: 20 * time.Hour, - ExtraArgs: []string{ - "--workdir", "../../..", "test", + CipdPackages: pkgs, + Command: []string{ + recipes(parts), "run", "--timestamps", + "--workdir", ".", "test", fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", n), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -880,18 +905,14 @@ 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), }, - 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") - } + 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, } if deps := getIsolatedCIPDDeps(parts); len(deps) > 0 { s.Dependencies = append(s.Dependencies, deps...) @@ -914,8 +935,9 @@ func coverage(b *specs.TasksCfgBuilder, name string, parts map[string]string, co Dependencies: deps, Dimensions: linuxGceDimensions(), CipdPackages: pkgs, - ExtraArgs: []string{ - "--workdir", "../../..", "upload_coverage_results", + Command: []string{ + RECIPE_BUNDLE_UNIX, "run", "--timestamps", + "--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), @@ -926,7 +948,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("upload_coverage_results.isolate"), + Isolate: relpath("swarm_recipe.isolate"), Priority: 0.8, }) return uploadName @@ -936,32 +958,16 @@ 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.isolate") + isolate := relpath("perf_skia_bundled.isolate") if strings.Contains(parts["extra_config"], "Skpbench") { recipe = "skpbench" - 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") - } + isolate = relpath("skpbench_skia_bundled.isolate") } s := &specs.TaskSpec{ - CipdPackages: pkgs, - Dependencies: []string{compileTaskName}, - Dimensions: swarmDimensions(parts), - ExecutionTimeout: 4 * time.Hour, - Expiration: 20 * time.Hour, - ExtraArgs: []string{ - "--workdir", "../../..", recipe, + CipdPackages: pkgs, + Command: []string{ + recipes(parts), "run", "--timestamps", + "--workdir", ".", recipe, fmt.Sprintf("repository=%s", specs.PLACEHOLDER_REPO), fmt.Sprintf("buildername=%s", name), fmt.Sprintf("swarm_out_dir=%s", specs.PLACEHOLDER_ISOLATED_OUTDIR), @@ -971,13 +977,14 @@ 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), }, - IoTimeout: 40 * time.Minute, - Isolate: isolate, - MaxAttempts: 1, - Priority: 0.8, - } - if useBundledRecipes(parts) { - s.Dependencies = append(s.Dependencies, BUNDLE_RECIPES_NAME) + 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, } if deps := getIsolatedCIPDDeps(parts); len(deps) > 0 { s.Dependencies = append(s.Dependencies, deps...) @@ -1005,10 +1012,9 @@ 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{ - Dependencies: []string{name}, - Dimensions: linuxGceDimensions(), - ExtraArgs: []string{ - "--workdir", "../../..", "upload_nano_results", + Command: []string{ + RECIPE_BUNDLE_UNIX, "run", "--timestamps", + "--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), @@ -1019,8 +1025,10 @@ 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), }, - Isolate: relpath("upload_nano_results.isolate"), - Priority: 0.8, + Dependencies: []string{name, BUNDLE_RECIPES_NAME}, + Dimensions: linuxGceDimensions(), + Isolate: relpath("swarm_recipe.isolate"), + Priority: 0.8, }) return uploadName } @@ -1048,22 +1056,22 @@ func process(b *specs.TasksCfgBuilder, name string) { // RecreateSKPs. if strings.Contains(name, "RecreateSKPs") { - deps = append(deps, recreateSKPs(b, name)) + deps = append(deps, recreateSKPs(b, name, parts)) } // UpdateMetaConfig bot. if strings.Contains(name, "UpdateMetaConfig") { - deps = append(deps, updateMetaConfig(b, name)) + deps = append(deps, updateMetaConfig(b, name, parts)) } // CT bots. if strings.Contains(name, "-CT_") { - deps = append(deps, ctSKPs(b, name)) + deps = append(deps, ctSKPs(b, name, parts)) } // Infra tests. if name == "Housekeeper-PerCommit-InfraTests" { - deps = append(deps, infra(b, name)) + deps = append(deps, infra(b, name, parts)) } // Compile bots. @@ -1096,10 +1104,10 @@ func process(b *specs.TasksCfgBuilder, name string) { // Housekeepers. if name == "Housekeeper-PerCommit" { - deps = append(deps, housekeeper(b, name, compileTaskName)) + deps = append(deps, housekeeper(b, name, compileTaskName, parts)) } if name == "Housekeeper-PerCommit-CheckGeneratedFiles" { - deps = append(deps, checkGeneratedFiles(b, name)) + deps = append(deps, checkGeneratedFiles(b, name, parts)) } // Common assets needed by the remaining bots. diff --git a/infra/bots/housekeeper_skia.isolate b/infra/bots/housekeeper_skia.isolate deleted file mode 100644 index 767fa3af9e..0000000000 --- a/infra/bots/housekeeper_skia.isolate +++ /dev/null @@ -1,10 +0,0 @@ -{ - 'includes': [ - 'swarm_recipe.isolate', - ], - 'variables': { - 'files': [ - '../../../.gclient', - ], - }, -} diff --git a/infra/bots/infra_skia.isolate b/infra/bots/infra_skia.isolate deleted file mode 100644 index 767fa3af9e..0000000000 --- a/infra/bots/infra_skia.isolate +++ /dev/null @@ -1,10 +0,0 @@ -{ - 'includes': [ - 'swarm_recipe.isolate', - ], - 'variables': { - 'files': [ - '../../../.gclient', - ], - }, -} diff --git a/infra/bots/infrabots.isolate b/infra/bots/infrabots.isolate index b08e836910..bfe028a53d 100644 --- a/infra/bots/infrabots.isolate +++ b/infra/bots/infrabots.isolate @@ -1,7 +1,6 @@ { 'variables': { 'files': [ - '../../tools/valgrind.supp', './', ], }, diff --git a/infra/bots/isolate_ndk_linux.isolate b/infra/bots/isolate_ndk_linux.isolate deleted file mode 100644 index c53a3ed4ba..0000000000 --- a/infra/bots/isolate_ndk_linux.isolate +++ /dev/null @@ -1,7 +0,0 @@ -{ - 'variables': { - 'command': [ - '/bin/cp', '-rL', 'android_ndk_linux', '${ISOLATED_OUTDIR}', - ], - }, -} diff --git a/infra/bots/isolate_skimage.isolate b/infra/bots/isolate_skimage.isolate deleted file mode 100644 index 36066be799..0000000000 --- a/infra/bots/isolate_skimage.isolate +++ /dev/null @@ -1,7 +0,0 @@ -{ - 'variables': { - 'command': [ - '/bin/cp', '-rL', 'skimage', '${ISOLATED_OUTDIR}', - ], - }, -} diff --git a/infra/bots/isolate_skp.isolate b/infra/bots/isolate_skp.isolate deleted file mode 100644 index d632dffeab..0000000000 --- a/infra/bots/isolate_skp.isolate +++ /dev/null @@ -1,7 +0,0 @@ -{ - 'variables': { - 'command': [ - '/bin/cp', '-rL', 'skp', '${ISOLATED_OUTDIR}', - ], - }, -} diff --git a/infra/bots/isolate_svg.isolate b/infra/bots/isolate_svg.isolate deleted file mode 100644 index e04c4e349e..0000000000 --- a/infra/bots/isolate_svg.isolate +++ /dev/null @@ -1,7 +0,0 @@ -{ - 'variables': { - 'command': [ - '/bin/cp', '-rL', 'svg', '${ISOLATED_OUTDIR}', - ], - }, -} diff --git a/infra/bots/isolate_win_toolchain.isolate b/infra/bots/isolate_win_toolchain.isolate deleted file mode 100644 index a8166ad937..0000000000 --- a/infra/bots/isolate_win_toolchain.isolate +++ /dev/null @@ -1,7 +0,0 @@ -{ - '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 deleted file mode 100644 index 28fbb0b651..0000000000 --- a/infra/bots/isolate_win_vulkan_sdk.isolate +++ /dev/null @@ -1,7 +0,0 @@ -{ - 'variables': { - 'command': [ - '/bin/cp', '-rL', 'win_vulkan_sdk', '${ISOLATED_OUTDIR}', - ], - }, -} diff --git a/infra/bots/meta_config.isolate b/infra/bots/meta_config.isolate deleted file mode 100644 index d4e1484acd..0000000000 --- a/infra/bots/meta_config.isolate +++ /dev/null @@ -1,5 +0,0 @@ -{ - 'includes': [ - 'swarm_recipe.isolate', - ], -} diff --git a/infra/bots/perf_skia.isolate b/infra/bots/perf_skia.isolate deleted file mode 100644 index b220aa5964..0000000000 --- a/infra/bots/perf_skia.isolate +++ /dev/null @@ -1,13 +0,0 @@ -{ - '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 dbfe4c3f79..8504083377 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 deleted file mode 100644 index 5bb5ae153c..0000000000 --- a/infra/bots/perf_skia_bundled_unix.isolate +++ /dev/null @@ -1,6 +0,0 @@ -{ - '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 deleted file mode 100644 index 8f425937af..0000000000 --- a/infra/bots/perf_skia_bundled_win.isolate +++ /dev/null @@ -1,6 +0,0 @@ -{ - 'includes': [ - 'perf_skia_bundled.isolate', - 'swarm_recipe_bundled_win.isolate', - ], -} diff --git a/infra/bots/presubmit_skia.isolate b/infra/bots/presubmit_skia.isolate deleted file mode 100644 index 767fa3af9e..0000000000 --- a/infra/bots/presubmit_skia.isolate +++ /dev/null @@ -1,10 +0,0 @@ -{ - '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 deleted file mode 100644 index 1cf232b276..0000000000 --- a/infra/bots/recipes/bundle_recipes.expected/BundleRecipes.json +++ /dev/null @@ -1,61 +0,0 @@ -[ - { - "cmd": [ - "git", - "init" - ], - "cwd": "[START_DIR]/skia", - "env": { - "PATH": "[START_DIR]/git:[START_DIR]/git/bin:" - }, - "infra_step": true, - "name": "git init" - }, - { - "cmd": [ - "git", - "add", - "." - ], - "cwd": "[START_DIR]/skia", - "env": { - "PATH": "[START_DIR]/git:[START_DIR]/git/bin:" - }, - "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:" - }, - "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:" - }, - "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 deleted file mode 100644 index 49310af55a..0000000000 --- a/infra/bots/recipes/bundle_recipes.py +++ /dev/null @@ -1,40 +0,0 @@ -# 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 deleted file mode 100644 index 008aaa755c..0000000000 --- a/infra/bots/skpbench_skia.isolate +++ /dev/null @@ -1,11 +0,0 @@ -{ - '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 5b1ec156f6..b6ff22c6e7 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 deleted file mode 100644 index c396b305cb..0000000000 --- a/infra/bots/skpbench_skia_bundled_unix.isolate +++ /dev/null @@ -1,6 +0,0 @@ -{ - '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 deleted file mode 100644 index befba1b61a..0000000000 --- a/infra/bots/skpbench_skia_bundled_win.isolate +++ /dev/null @@ -1,6 +0,0 @@ -{ - '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 c21a321136..c4841dfb49 100644 --- a/infra/bots/swarm_recipe.isolate +++ b/infra/bots/swarm_recipe.isolate @@ -3,10 +3,8 @@ '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 deleted file mode 100644 index 731b369d87..0000000000 --- a/infra/bots/swarm_recipe_bundled_unix.isolate +++ /dev/null @@ -1,7 +0,0 @@ -{ - '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 deleted file mode 100644 index 19932fe2a0..0000000000 --- a/infra/bots/swarm_recipe_bundled_win.isolate +++ /dev/null @@ -1,7 +0,0 @@ -{ - 'variables': { - 'command': [ - '../../../recipe_bundle/recipes.bat', 'run', '--timestamps', - ], - }, -} diff --git a/infra/bots/tasks.json b/infra/bots/tasks.json index 1fb88de44a..7fd6d07245 100644 --- a/infra/bots/tasks.json +++ b/infra/bots/tasks.json @@ -2876,18 +2876,12 @@ }, "tasks": { "Build-Debian9-Clang-arm-Debug-Android": { - "dependencies": [ - "Housekeeper-PerCommit-IsolateAndroidNDKLinux" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm-Debug-Android", @@ -2898,7 +2892,17 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "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", "priority": 0.8 }, "Build-Debian9-Clang-arm-Debug-Chromebook_GLES": { @@ -2919,15 +2923,12 @@ "version": "version:0" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm-Debug-Chromebook_GLES", @@ -2938,12 +2939,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-arm-Release-Android": { "dependencies": [ - "Housekeeper-PerCommit-IsolateAndroidNDKLinux" + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -2951,9 +2948,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm-Release-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm-Release-Android", @@ -2964,11 +2968,8 @@ "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": [ @@ -2977,9 +2978,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm-Release-Android_API26": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm-Release-Android_API26", @@ -2990,7 +2998,17 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "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", "priority": 0.8 }, "Build-Debian9-Clang-arm-Release-Chromebook_GLES": { @@ -3011,15 +3029,12 @@ "version": "version:0" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm-Release-Chromebook_GLES", @@ -3030,12 +3045,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-arm64-Debug-Android": { "dependencies": [ - "Housekeeper-PerCommit-IsolateAndroidNDKLinux" + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -3043,9 +3054,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm64-Debug-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm64-Debug-Android", @@ -3056,11 +3074,8 @@ "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": [ @@ -3069,9 +3084,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm64-Debug-Android_Vulkan": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm64-Debug-Android_Vulkan", @@ -3082,11 +3104,8 @@ "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": [ @@ -3095,9 +3114,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm64-Release-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm64-Release-Android", @@ -3108,11 +3134,8 @@ "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": [ @@ -3121,9 +3144,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-arm64-Release-Android_Vulkan": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-arm64-Release-Android_Vulkan", @@ -3134,11 +3164,8 @@ "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": [ @@ -3147,9 +3174,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x64-Debug-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x64-Debug-Android", @@ -3160,11 +3194,8 @@ "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": [ @@ -3173,9 +3204,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x64-Release-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x64-Release-Android", @@ -3186,7 +3224,17 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "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", "priority": 0.8 }, "Build-Debian9-Clang-x86-Debug": { @@ -3197,15 +3245,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86-Debug", @@ -3216,12 +3261,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-Clang-x86-Debug-Android": { "dependencies": [ - "Housekeeper-PerCommit-IsolateAndroidNDKLinux" + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -3229,9 +3270,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x86-Debug-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86-Debug-Android", @@ -3242,11 +3290,8 @@ "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": [ @@ -3255,9 +3300,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x86-Debug-Android_Vulkan": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86-Debug-Android_Vulkan", @@ -3268,11 +3320,8 @@ "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": [ @@ -3281,9 +3330,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x86-Release-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86-Release-Android", @@ -3294,11 +3350,8 @@ "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": [ @@ -3307,9 +3360,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-Clang-x86-Release-Android_Vulkan": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86-Release-Android_Vulkan", @@ -3320,7 +3380,17 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "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", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug": { @@ -3331,15 +3401,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug", @@ -3350,7 +3417,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-ASAN": { @@ -3361,15 +3437,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-ASAN", @@ -3380,7 +3453,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES": { @@ -3396,15 +3478,12 @@ "version": "version:2" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES", @@ -3415,7 +3494,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-Coverage": { @@ -3426,15 +3514,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-Coverage", @@ -3445,7 +3530,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-MSAN": { @@ -3456,15 +3550,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-MSAN", @@ -3475,7 +3566,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE": { @@ -3486,15 +3586,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", @@ -3505,7 +3602,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-SafeStack": { @@ -3516,15 +3622,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-SafeStack", @@ -3535,7 +3638,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-Vulkan": { @@ -3551,15 +3663,12 @@ "version": "version:0" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-Vulkan", @@ -3570,7 +3679,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Debug-Vulkan_Coverage": { @@ -3586,15 +3704,12 @@ "version": "version:0" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Debug-Vulkan_Coverage", @@ -3605,7 +3720,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release": { @@ -3616,15 +3740,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release", @@ -3635,7 +3756,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-ANGLE": { @@ -3646,15 +3776,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-ANGLE", @@ -3665,7 +3792,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-ASAN": { @@ -3676,15 +3812,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-ASAN", @@ -3695,7 +3828,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-Chromebook_GLES": { @@ -3711,15 +3853,12 @@ "version": "version:2" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-Chromebook_GLES", @@ -3730,7 +3869,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-Fast": { @@ -3741,15 +3889,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-Fast", @@ -3760,7 +3905,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-Mini": { @@ -3771,15 +3925,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-Mini", @@ -3790,7 +3941,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD": { @@ -3801,15 +3961,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD", @@ -3820,7 +3977,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE2": { @@ -3831,15 +3997,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE2", @@ -3850,7 +4013,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE41": { @@ -3861,15 +4033,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE41", @@ -3880,7 +4049,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-SK_FORCE_RASTER_PIPELINE_BLITTER": { @@ -3891,15 +4069,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-SK_FORCE_RASTER_PIPELINE_BLITTER", @@ -3910,7 +4085,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-TSAN": { @@ -3921,15 +4105,12 @@ "version": "version:10" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-TSAN", @@ -3940,7 +4121,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-Clang-x86_64-Release-Vulkan": { @@ -3956,15 +4146,12 @@ "version": "version:0" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-Clang-x86_64-Release-Vulkan", @@ -3975,7 +4162,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-EMCC-wasm-Release": { @@ -3986,15 +4182,12 @@ "version": "version:1" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-EMCC-wasm-Release", @@ -4005,7 +4198,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-GCC-arm-Debug-Chromecast": { @@ -4021,15 +4223,12 @@ "version": "version:0" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-arm-Debug-Chromecast", @@ -4040,7 +4239,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Debian9-GCC-arm-Release-Chromecast": { @@ -4056,15 +4264,12 @@ "version": "version:0" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-arm-Release-Chromecast", @@ -4075,19 +4280,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86-Debug": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86-Debug": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86-Debug", @@ -4098,19 +4309,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86-Release": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86-Release": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86-Release", @@ -4121,19 +4338,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Debug": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Debug": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Debug", @@ -4144,19 +4367,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Debug-NoGPU": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Debug-NoGPU": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Debug-NoGPU", @@ -4167,19 +4396,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release", @@ -4190,12 +4425,8 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-Flutter_Android": { "dependencies": [ - "Housekeeper-PerCommit-IsolateAndroidNDKLinux" + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -4203,9 +4434,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-Flutter_Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-Flutter_Android", @@ -4216,19 +4454,26 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-NoGPU": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateAndroidNDKLinux" + ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-NoGPU": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-NoGPU", @@ -4239,19 +4484,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-PDFium": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-PDFium": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-PDFium", @@ -4262,19 +4513,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths", @@ -4285,19 +4542,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41", @@ -4308,19 +4571,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Debian9-GCC-x86_64-Release-Shared": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Debian9-GCC-x86_64-Release-Shared": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Debian9-GCC-x86_64-Release-Shared", @@ -4331,19 +4600,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Mac-Clang-arm-Debug-iOS": { - "dimensions": [ - "cpu:x86-64-E5-2697_v2", - "gpu:none", - "os:Mac-10.13.1", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-arm-Debug-iOS", @@ -4354,19 +4629,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-arm-Release-iOS": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-arm-Release-iOS": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-arm-Release-iOS", @@ -4377,7 +4658,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "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-Android": { @@ -4388,15 +4678,12 @@ "version": "version:4" } ], - "dimensions": [ - "cpu:x86-64-E5-2697_v2", - "gpu:none", - "os:Mac-10.13.1", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-arm64-Debug-Android", @@ -4407,19 +4694,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-arm64-Debug-iOS": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-arm64-Debug-iOS": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-arm64-Debug-iOS", @@ -4430,19 +4723,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-arm64-Release-iOS": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-arm64-Release-iOS": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-arm64-Release-iOS", @@ -4453,19 +4752,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x64-Release-iOS": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x64-Release-iOS": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x64-Release-iOS", @@ -4476,19 +4781,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Debug": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Debug": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Debug", @@ -4499,19 +4810,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Debug-CommandBuffer": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Debug-CommandBuffer": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Debug-CommandBuffer", @@ -4522,19 +4839,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Debug-Metal": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Debug-Metal": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Debug-Metal", @@ -4545,19 +4868,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Release": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Release": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Release", @@ -4568,19 +4897,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Release-CommandBuffer": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Release-CommandBuffer": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Release-CommandBuffer", @@ -4591,19 +4926,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Mac-Clang-x86_64-Release-TSAN": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-E5-2697_v2", "gpu:none", "os:Mac-10.13.1", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Mac-Clang-x86_64-Release-TSAN": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Mac-Clang-x86_64-Release-TSAN", @@ -4614,7 +4955,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-E5-2697_v2", + "gpu:none", + "os:Mac-10.13.1", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Win-Clang-arm64-Release-Android": { @@ -4625,15 +4975,12 @@ "version": "version:5" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-arm64-Release-Android", @@ -4644,7 +4991,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Windows-2016Server-14393", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Build-Win-Clang-x86_64-Debug": { @@ -4655,18 +5011,12 @@ "version": "version:0" } ], - "dependencies": [ - "Housekeeper-PerCommit-IsolateWinToolchain" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Debug", @@ -4677,7 +5027,17 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "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", "priority": 0.8 }, "Build-Win-Clang-x86_64-Debug-ANGLE": { @@ -4688,18 +5048,12 @@ "version": "version:0" } ], - "dependencies": [ - "Housekeeper-PerCommit-IsolateWinToolchain" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Debug-ANGLE", @@ -4710,7 +5064,17 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "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", "priority": 0.8 }, "Build-Win-Clang-x86_64-Debug-Vulkan": { @@ -4721,19 +5085,12 @@ "version": "version:0" } ], - "dependencies": [ - "Housekeeper-PerCommit-IsolateWinToolchain", - "Housekeeper-PerCommit-IsolateWinVulkanSDK" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Debug-Vulkan", @@ -4744,7 +5101,18 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "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", "priority": 0.8 }, "Build-Win-Clang-x86_64-Release": { @@ -4755,18 +5123,12 @@ "version": "version:0" } ], - "dependencies": [ - "Housekeeper-PerCommit-IsolateWinToolchain" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Release", @@ -4777,7 +5139,17 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "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", "priority": 0.8 }, "Build-Win-Clang-x86_64-Release-ANGLE": { @@ -4788,18 +5160,12 @@ "version": "version:0" } ], - "dependencies": [ - "Housekeeper-PerCommit-IsolateWinToolchain" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Release-ANGLE", @@ -4810,7 +5176,17 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "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", "priority": 0.8 }, "Build-Win-Clang-x86_64-Release-Vulkan": { @@ -4821,19 +5197,12 @@ "version": "version:0" } ], - "dependencies": [ - "Housekeeper-PerCommit-IsolateWinToolchain", - "Housekeeper-PerCommit-IsolateWinVulkanSDK" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Windows-2016Server-14393", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-Clang-x86_64-Release-Vulkan", @@ -4844,12 +5213,10 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Win-MSVC-x86-Debug": { "dependencies": [ - "Housekeeper-PerCommit-IsolateWinToolchain" + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateWinToolchain", + "Housekeeper-PerCommit-IsolateWinVulkanSDK" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -4857,9 +5224,16 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86-Debug": { + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86-Debug", @@ -4870,11 +5244,8 @@ "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": [ @@ -4883,9 +5254,16 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86-Debug-Exceptions": { + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86-Debug-Exceptions", @@ -4896,11 +5274,8 @@ "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": [ @@ -4909,9 +5284,16 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86-Release": { + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86-Release", @@ -4922,11 +5304,8 @@ "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": [ @@ -4935,9 +5314,16 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86_64-Debug": { + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86_64-Debug", @@ -4948,13 +5334,9 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Win-MSVC-x86_64-Debug-Vulkan": { "dependencies": [ - "Housekeeper-PerCommit-IsolateWinToolchain", - "Housekeeper-PerCommit-IsolateWinVulkanSDK" + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateWinToolchain" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -4962,9 +5344,16 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86_64-Debug-Vulkan": { + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86_64-Debug-Vulkan", @@ -4975,12 +5364,10 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Win-MSVC-x86_64-Release": { "dependencies": [ - "Housekeeper-PerCommit-IsolateWinToolchain" + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateWinToolchain", + "Housekeeper-PerCommit-IsolateWinVulkanSDK" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -4988,9 +5375,16 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86_64-Release": { + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86_64-Release", @@ -5001,13 +5395,9 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Build-Win-MSVC-x86_64-Release-Vulkan": { "dependencies": [ - "Housekeeper-PerCommit-IsolateWinToolchain", - "Housekeeper-PerCommit-IsolateWinVulkanSDK" + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateWinToolchain" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -5015,9 +5405,16 @@ "os:Windows-2016Server-14393", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Build-Win-MSVC-x86_64-Release-Vulkan": { + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "compile", "repository=<(REPO)", "buildername=Build-Win-MSVC-x86_64-Release-Vulkan", @@ -5028,7 +5425,18 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "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", "priority": 0.8 }, "Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { @@ -5039,18 +5447,12 @@ "version": "version:10" } ], - "dependencies": [ - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "calmbench", "repository=<(REPO)", "buildername=Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -5061,7 +5463,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "infra_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { @@ -5072,18 +5483,12 @@ "version": "version:10" } ], - "dependencies": [ - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG" - ], - "dimensions": [ - "gpu:10de:1cb3-384.59", - "os:Ubuntu-17.04", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "calmbench", "repository=<(REPO)", "buildername=Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -5094,7 +5499,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "infra_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG" + ], + "dimensions": [ + "gpu:10de:1cb3-384.59", + "os:Ubuntu-17.04", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Housekeeper-Nightly-RecreateSKPs_Canary": { @@ -5105,16 +5519,12 @@ "version": "version:3" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "recreate_skps", "repository=<(REPO)", "buildername=Housekeeper-Nightly-RecreateSKPs_Canary", @@ -5125,20 +5535,27 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "io_timeout_ns": 2400000000000, - "isolate": "compile_skia.isolate", - "priority": 0.8 - }, - "Housekeeper-Nightly-UpdateMetaConfig": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "cpu:x86-64-Haswell_GCE", "gpu:none", "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "execution_timeout_ns": 14400000000000, + "io_timeout_ns": 2400000000000, + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Housekeeper-Nightly-UpdateMetaConfig": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "update_meta_config", "repository=<(REPO)", "buildername=Housekeeper-Nightly-UpdateMetaConfig", @@ -5149,7 +5566,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "meta_config.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Housekeeper-PerCommit": { @@ -5160,18 +5586,12 @@ "version": "version:3" } ], - "dependencies": [ - "Build-Debian9-GCC-x86_64-Release-Shared" - ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "housekeeper", "repository=<(REPO)", "buildername=Housekeeper-PerCommit", @@ -5182,48 +5602,64 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "housekeeper_skia.isolate", + "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", "priority": 0.8 }, "Housekeeper-PerCommit-BundleRecipes": { "cipd_packages": [ { "name": "infra/git/${platform}", - "path": "git", - "version": "version:2.13.0.chromium9" + "path": "cipd_bin_packages", + "version": "version:2.14.1.chromium10" }, { "name": "infra/tools/git/${platform}", - "path": "git", - "version": "git_revision:a78b5f3658c0578a017db48df97d20ac09822bcd" + "path": "cipd_bin_packages", + "version": "git_revision:fa7a52f4741f5e04bba0dfccc9b8456dc572c60b" + }, + { + "name": "infra/tools/luci/git-credential-luci/${platform}", + "path": "cipd_bin_packages", + "version": "git_revision:fa7a52f4741f5e04bba0dfccc9b8456dc572c60b" } ], + "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" ], - "extra_args": [ - "--workdir", - "../../..", - "bundle_recipes", - "buildername=Housekeeper-PerCommit-BundleRecipes", - "swarm_out_dir=${ISOLATED_OUTDIR}" - ], - "isolate": "bundle_recipes.isolate", + "env_prefixes": { + "PATH": [ + "cipd_bin_packages", + "cipd_bin_packages/bin" + ] + }, + "isolate": "swarm_recipe.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-CheckGeneratedFiles": { - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "check_generated_files", "repository=<(REPO)", "buildername=Housekeeper-PerCommit-CheckGeneratedFiles", @@ -5234,7 +5670,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "compile_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Housekeeper-PerCommit-InfraTests": { @@ -5245,15 +5690,12 @@ "version": "version:3" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "infra", "repository=<(REPO)", "buildername=Housekeeper-PerCommit-InfraTests", @@ -5264,7 +5706,16 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "isolate": "infra_skia.isolate", + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Housekeeper-PerCommit-IsolateAndroidNDKLinux": { @@ -5275,13 +5726,19 @@ "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": "isolate_ndk_linux.isolate", + "isolate": "empty.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-IsolateSKP": { @@ -5292,13 +5749,19 @@ "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": "isolate_skp.isolate", + "isolate": "empty.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-IsolateSVG": { @@ -5309,13 +5772,19 @@ "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": "isolate_svg.isolate", + "isolate": "empty.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-IsolateSkImage": { @@ -5326,13 +5795,19 @@ "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": "isolate_skimage.isolate", + "isolate": "empty.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-IsolateWinToolchain": { @@ -5343,13 +5818,19 @@ "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": "isolate_win_toolchain.isolate", + "isolate": "empty.isolate", "priority": 0.7 }, "Housekeeper-PerCommit-IsolateWinVulkanSDK": { @@ -5360,13 +5841,19 @@ "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": "isolate_win_vulkan_sdk.isolate", + "isolate": "empty.isolate", "priority": 0.7 }, "Housekeeper-Weekly-RecreateSKPs": { @@ -5377,16 +5864,12 @@ "version": "version:3" } ], - "dimensions": [ - "cpu:x86-64-Haswell_GCE", - "gpu:none", - "os:Debian-9.2", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "recreate_skps", "repository=<(REPO)", "buildername=Housekeeper-Weekly-RecreateSKPs", @@ -5397,30 +5880,27 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], + "dimensions": [ + "cpu:x86-64-Haswell_GCE", + "gpu:none", + "os:Debian-9.2", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, "io_timeout_ns": 2400000000000, - "isolate": "compile_skia.isolate", + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": { - "dependencies": [ - "Build-Debian9-Clang-arm-Debug-Android", - "Housekeeper-PerCommit-BundleRecipes", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:MOB30Q", - "device_type:sprout", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android", @@ -5431,12 +5911,44 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:MOB30Q", + "device_type:sprout", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", + "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-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -5453,44 +5965,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", - "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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:NRD90M_G920TUVU5FQK1", - "device_type:zerofltetmo", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android", @@ -5501,12 +5987,44 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:NRD90M_G920TUVU5FQK1", + "device_type:zerofltetmo", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", + "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-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -5523,44 +6041,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", - "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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:NRD90M_G930AUCS4BQC2", - "device_type:heroqlteatt", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android", @@ -5571,12 +6063,44 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:NRD90M_G930AUCS4BQC2", + "device_type:heroqlteatt", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", + "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-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -5593,44 +6117,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", - "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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:NRD90M_G930FXXU1DQAS", - "device_type:herolte", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android", @@ -5641,12 +6139,44 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:NRD90M_G930FXXU1DQAS", + "device_type:herolte", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", + "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-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -5663,44 +6193,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", - "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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:NPJ25.93-14", - "device_type:athene", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android", @@ -5711,12 +6215,44 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:NPJ25.93-14", + "device_type:athene", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", + "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-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -5733,44 +6269,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", - "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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:NRD90M_1915764_848", - "device_type:foster", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android", @@ -5781,12 +6291,44 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:NRD90M_1915764_848", + "device_type:foster", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_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-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -5803,12 +6345,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -5816,12 +6367,6 @@ "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", @@ -5838,12 +6383,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -5851,12 +6405,6 @@ "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", @@ -5873,44 +6421,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:LMY49J_2640980", - "device_type:manta", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android", @@ -5921,12 +6443,44 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:LMY49J_2640980", + "device_type:manta", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", + "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-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -5943,12 +6497,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus10-CPU-Exynos5250-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)", @@ -5956,12 +6519,6 @@ "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", @@ -5978,12 +6535,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-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)", @@ -5991,12 +6557,6 @@ "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", @@ -6013,12 +6573,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", + "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6026,12 +6595,6 @@ "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", @@ -6048,12 +6611,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-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)", @@ -6061,12 +6633,6 @@ "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", @@ -6083,12 +6649,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-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)", @@ -6096,12 +6671,6 @@ "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", @@ -6118,12 +6687,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-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)", @@ -6131,12 +6709,6 @@ "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", @@ -6153,12 +6725,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", + "buildername=Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6166,12 +6747,6 @@ "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", @@ -6188,12 +6763,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-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)", @@ -6201,12 +6785,6 @@ "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", @@ -6223,44 +6801,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", - "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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:OPR6.170623.021", - "device_type:fugu", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 21600000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android", @@ -6271,12 +6823,6 @@ "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", @@ -6293,9 +6839,18 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android", @@ -6306,12 +6861,44 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-x86-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:OPR6.170623.021", + "device_type:fugu", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 21600000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_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-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -6328,12 +6915,21 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-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)", @@ -6341,12 +6937,6 @@ "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", @@ -6363,12 +6953,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-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)", @@ -6376,12 +6975,6 @@ "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", @@ -6398,44 +6991,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:OPR3.170623.008", - "device_type:sailfish", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android", @@ -6446,14 +7013,8 @@ "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", + "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateSKP", "Housekeeper-PerCommit-IsolateSVG", @@ -6468,9 +7029,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan", @@ -6481,14 +7051,8 @@ "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", + "Build-Debian9-Clang-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateSKP", "Housekeeper-PerCommit-IsolateSVG", @@ -6503,9 +7067,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android", @@ -6516,16 +7089,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", - "Housekeeper-PerCommit-IsolateSKP" + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" ], "dimensions": [ "device_os:OPR3.170623.008", @@ -6536,9 +7105,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "skpbench", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench", @@ -6549,12 +7127,6 @@ "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", @@ -6569,9 +7141,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "skpbench", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench", @@ -6582,12 +7163,42 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Release-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP" + ], + "dimensions": [ + "device_os:OPR3.170623.008", + "device_type:sailfish", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "skpbench_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_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-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -6604,12 +7215,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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_Vulkan_Skpbench", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6617,12 +7237,6 @@ "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", @@ -6637,12 +7251,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", - "skpbench", + ".", + "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench", + "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6650,12 +7273,6 @@ "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", @@ -6672,12 +7289,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-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)", @@ -6685,12 +7311,6 @@ "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", @@ -6707,12 +7327,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-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)", @@ -6720,12 +7349,6 @@ "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", @@ -6742,12 +7365,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-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)", @@ -6755,12 +7387,6 @@ "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", @@ -6777,12 +7403,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", + "buildername=Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6790,12 +7425,6 @@ "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", @@ -6812,12 +7441,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android", + "buildername=Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -6825,12 +7463,6 @@ "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", @@ -6847,42 +7479,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", - "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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP" - ], - "dimensions": [ - "device_os:OPR1.170623.034", - "device_type:dragon", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "skpbench", "repository=<(REPO)", "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench", @@ -6893,12 +7501,6 @@ "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", @@ -6913,9 +7515,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "skpbench", "repository=<(REPO)", "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench", @@ -6926,12 +7537,42 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Release-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP" + ], + "dimensions": [ + "device_os:OPR1.170623.034", + "device_type:dragon", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "skpbench_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "skpbench", + "repository=<(REPO)", + "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench", + "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-arm64-Release-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -6946,43 +7587,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "skpbench", - "repository=<(REPO)", - "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench", - "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": "skpbench_skia_bundled_unix.isolate", + "isolate": "skpbench_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "gpu:MaliT764", - "os:ChromeOS", - "pool:Skia", - "release_version:10172.0.0" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All", @@ -6993,12 +7609,43 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "gpu:MaliT764", + "os:ChromeOS", + "pool:Skia", + "release_version:10172.0.0" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-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-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7014,43 +7661,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "gpu:TegraK1", - "os:ChromeOS", - "pool:Skia", - "release_version:10172.0.0" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All", @@ -7061,12 +7683,43 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "gpu:TegraK1", + "os:ChromeOS", + "pool:Skia", + "release_version:10172.0.0" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-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-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7082,12 +7735,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", + "buildername=Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7095,12 +7757,6 @@ "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", @@ -7116,12 +7772,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", + "buildername=Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7129,12 +7794,6 @@ "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", @@ -7150,12 +7809,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", + "buildername=Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7163,12 +7831,6 @@ "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", @@ -7184,12 +7846,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All", + "buildername=Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7197,12 +7868,6 @@ "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", @@ -7218,43 +7883,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "gpu:MaliT604", - "os:ChromeOS", - "pool:Skia", - "release_version:9901.12.0" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All", @@ -7265,12 +7905,43 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "gpu:MaliT604", + "os:ChromeOS", + "pool:Skia", + "release_version:9901.12.0" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-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-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -7286,12 +7957,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", + "buildername=Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7299,12 +7979,6 @@ "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", @@ -7320,12 +7994,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", + "buildername=Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -7333,12 +8016,6 @@ "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", @@ -7354,42 +8031,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-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_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP" - ], - "dimensions": [ - "device_os:1.24_82923", - "device_type:chorizo", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All", @@ -7400,45 +8053,6 @@ "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", - "Housekeeper-PerCommit-IsolateSKP" - ], - "dimensions": [ - "device_os:1.24_82923", - "device_type:chorizo", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-Chromecast-GCC-Chorizo-CPU-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_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", @@ -7453,12 +8067,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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)", @@ -7466,12 +8089,6 @@ "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", @@ -7486,9 +8103,54 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-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-arm-Debug-Chromecast", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP" + ], + "dimensions": [ + "device_os:1.24_82923", + "device_type:chorizo", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "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", + "--workdir", + ".", "perf", "repository=<(REPO)", "buildername=Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", @@ -7499,8 +8161,22 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-GCC-arm-Release-Chromecast", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP" + ], + "dimensions": [ + "device_os:1.24_82923", + "device_type:chorizo", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7522,6 +8198,22 @@ "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" @@ -7533,21 +8225,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7569,6 +8248,22 @@ "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" @@ -7580,21 +8275,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7621,6 +8303,22 @@ "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" @@ -7632,21 +8330,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7673,6 +8358,22 @@ "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" @@ -7684,21 +8385,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7720,6 +8408,22 @@ "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" @@ -7731,21 +8435,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7767,6 +8458,22 @@ "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" @@ -7778,21 +8485,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7814,6 +8508,22 @@ "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" @@ -7825,21 +8535,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7866,6 +8563,22 @@ "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" @@ -7877,21 +8590,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7913,6 +8613,22 @@ "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" @@ -7924,21 +8640,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7960,6 +8663,22 @@ "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" @@ -7971,21 +8690,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8007,6 +8713,22 @@ "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" @@ -8018,21 +8740,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8054,6 +8763,22 @@ "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" @@ -8065,21 +8790,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8101,6 +8813,22 @@ "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" @@ -8112,21 +8840,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8148,6 +8863,22 @@ "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" @@ -8159,21 +8890,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8195,6 +8913,22 @@ "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" @@ -8206,21 +8940,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8242,6 +8963,22 @@ "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" @@ -8253,21 +8990,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8289,6 +9013,22 @@ "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" @@ -8300,21 +9040,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8336,6 +9063,22 @@ "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" @@ -8347,21 +9090,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8383,6 +9113,22 @@ "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" @@ -8394,21 +9140,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8430,6 +9163,22 @@ "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" @@ -8441,33 +9190,18 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, "Perf-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Release-All-CT_BENCH_1k_SKPs": { - "dimensions": [ - "pool:SkiaCT", - "os:Debian-9.2" - ], - "execution_timeout_ns": 86400000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "ct_skps", "repository=<(REPO)", "buildername=Perf-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Release-All-CT_BENCH_1k_SKPs", @@ -8478,19 +9212,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "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": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "pool:SkiaCT", "os:Debian-9.2" ], "execution_timeout_ns": 86400000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "ct_skps", "repository=<(REPO)", "buildername=Perf-Ubuntu14-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-CT_BENCH_1k_SKPs", @@ -8501,8 +9241,16 @@ "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": "ct_skps_skia.isolate", + "isolate": "skia_repo.isolate", "priority": 0.8 }, "Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All": { @@ -8528,6 +9276,22 @@ "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" @@ -8539,21 +9303,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8585,6 +9336,22 @@ "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" @@ -8596,21 +9363,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8637,6 +9391,22 @@ "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" @@ -8648,21 +9418,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8694,6 +9451,22 @@ "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" @@ -8705,21 +9478,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8746,6 +9506,22 @@ "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" @@ -8757,21 +9533,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8803,6 +9566,22 @@ "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" @@ -8814,21 +9593,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8855,6 +9621,22 @@ "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" @@ -8866,21 +9648,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8912,6 +9681,22 @@ "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" @@ -8923,21 +9708,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8964,6 +9736,22 @@ "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" @@ -8975,21 +9763,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9016,6 +9791,22 @@ "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" @@ -9027,21 +9818,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9068,6 +9846,22 @@ "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" @@ -9079,21 +9873,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9120,6 +9901,22 @@ "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" @@ -9131,21 +9928,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9167,6 +9951,22 @@ "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" @@ -9178,21 +9978,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9219,6 +10006,22 @@ "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" @@ -9230,21 +10033,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9271,6 +10061,22 @@ "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" @@ -9282,21 +10088,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9318,6 +10111,22 @@ "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" @@ -9329,21 +10138,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9370,6 +10166,22 @@ "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" @@ -9381,21 +10193,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9422,6 +10221,22 @@ "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" @@ -9433,21 +10248,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9474,6 +10276,22 @@ "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" @@ -9486,21 +10304,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9527,6 +10332,22 @@ "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" @@ -9539,21 +10360,8 @@ ], "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_unix.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9575,6 +10383,22 @@ "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" @@ -9586,21 +10410,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9622,6 +10433,22 @@ "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" @@ -9633,21 +10460,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9669,6 +10483,22 @@ "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" @@ -9680,21 +10510,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9716,6 +10533,22 @@ "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" @@ -9727,21 +10560,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9763,6 +10583,22 @@ "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" @@ -9774,21 +10610,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9810,6 +10633,22 @@ "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" @@ -9821,21 +10660,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9857,6 +10683,22 @@ "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" @@ -9868,21 +10710,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9904,6 +10733,22 @@ "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" @@ -9915,21 +10760,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9951,6 +10783,22 @@ "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" @@ -9962,21 +10810,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9998,6 +10833,22 @@ "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" @@ -10009,21 +10860,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10045,6 +10883,22 @@ "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" @@ -10056,21 +10910,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10092,6 +10933,22 @@ "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" @@ -10103,21 +10960,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10139,6 +10983,22 @@ "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" @@ -10150,21 +11010,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10186,6 +11033,22 @@ "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" @@ -10197,21 +11060,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10233,6 +11083,22 @@ "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" @@ -10244,21 +11110,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10280,6 +11133,22 @@ "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" @@ -10291,21 +11160,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10327,6 +11183,22 @@ "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" @@ -10338,21 +11210,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10374,6 +11233,22 @@ "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" @@ -10385,21 +11260,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10421,6 +11283,22 @@ "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" @@ -10432,21 +11310,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10468,6 +11333,22 @@ "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" @@ -10479,21 +11360,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10515,6 +11383,22 @@ "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" @@ -10526,21 +11410,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10562,6 +11433,22 @@ "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" @@ -10573,21 +11460,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10609,6 +11483,22 @@ "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" @@ -10620,21 +11510,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10656,6 +11533,22 @@ "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" @@ -10667,21 +11560,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10703,6 +11583,22 @@ "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" @@ -10714,21 +11610,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10750,6 +11633,22 @@ "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" @@ -10761,21 +11660,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10797,6 +11683,22 @@ "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" @@ -10808,21 +11710,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10844,6 +11733,22 @@ "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" @@ -10855,21 +11760,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10891,6 +11783,22 @@ "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" @@ -10902,21 +11810,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10938,6 +11833,22 @@ "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" @@ -10949,21 +11860,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10985,6 +11883,22 @@ "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" @@ -10996,21 +11910,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11032,6 +11933,22 @@ "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" @@ -11043,21 +11960,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11079,6 +11983,22 @@ "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" @@ -11090,21 +12010,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11126,6 +12033,22 @@ "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" @@ -11137,21 +12060,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11173,6 +12083,22 @@ "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" @@ -11184,21 +12110,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11220,6 +12133,22 @@ "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" @@ -11231,21 +12160,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11267,6 +12183,22 @@ "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" @@ -11278,21 +12210,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11314,6 +12233,22 @@ "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" @@ -11325,21 +12260,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11361,6 +12283,22 @@ "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" @@ -11372,21 +12310,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11408,6 +12333,22 @@ "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" @@ -11419,21 +12360,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11455,6 +12383,22 @@ "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" @@ -11466,21 +12410,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11502,6 +12433,22 @@ "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" @@ -11514,21 +12461,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11550,6 +12484,22 @@ "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" @@ -11562,21 +12512,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11598,6 +12535,22 @@ "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" @@ -11610,21 +12563,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11646,6 +12586,22 @@ "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" @@ -11658,21 +12614,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11694,6 +12637,22 @@ "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" @@ -11706,21 +12665,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11742,6 +12688,22 @@ "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" @@ -11754,21 +12716,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11790,6 +12739,22 @@ "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" @@ -11801,21 +12766,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11837,6 +12789,22 @@ "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" @@ -11848,21 +12816,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11884,6 +12839,22 @@ "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" @@ -11895,21 +12866,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11931,6 +12889,22 @@ "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" @@ -11942,21 +12916,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11978,6 +12939,22 @@ "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" @@ -11989,21 +12966,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12025,6 +12989,22 @@ "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" @@ -12036,21 +13016,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12072,6 +13039,22 @@ "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" @@ -12083,21 +13066,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12119,6 +13089,22 @@ "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" @@ -12130,21 +13116,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12166,6 +13139,22 @@ "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" @@ -12177,21 +13166,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12213,6 +13189,22 @@ "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" @@ -12224,21 +13216,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12260,6 +13239,22 @@ "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" @@ -12271,21 +13266,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12307,6 +13289,22 @@ "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" @@ -12318,21 +13316,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12354,6 +13339,22 @@ "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" @@ -12365,21 +13366,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12401,6 +13389,22 @@ "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" @@ -12412,21 +13416,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12448,6 +13439,22 @@ "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" @@ -12459,21 +13466,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12495,6 +13489,22 @@ "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" @@ -12506,21 +13516,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12542,6 +13539,22 @@ "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" @@ -12553,21 +13566,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12589,6 +13589,22 @@ "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" @@ -12600,21 +13616,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12636,6 +13639,22 @@ "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" @@ -12647,21 +13666,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12683,6 +13689,22 @@ "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" @@ -12694,21 +13716,8 @@ ], "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_win.isolate", + "isolate": "perf_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12730,6 +13739,22 @@ "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" @@ -12741,42 +13766,18 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--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)" - ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_win.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device:iPad6,3", - "os:iOS-10.3.1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All", @@ -12787,12 +13788,42 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Mac-Clang-arm64-Debug-iOS", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device:iPad6,3", + "os:iOS-10.3.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-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-arm64-Release-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -12807,42 +13838,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-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": "perf_skia_bundled_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device:iPhone7,2", - "os:iOS-10.3.1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All", @@ -12853,12 +13860,42 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Mac-Clang-arm64-Debug-iOS", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device:iPhone7,2", + "os:iOS-10.3.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "perf", + "repository=<(REPO)", + "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-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-arm64-Release-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -12873,12 +13910,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", + "buildername=Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -12886,12 +13932,6 @@ "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", @@ -12906,12 +13946,21 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "perf", "repository=<(REPO)", - "buildername=Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", + "buildername=Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -12919,12 +13968,6 @@ "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", @@ -12939,44 +13982,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "perf", - "repository=<(REPO)", - "buildername=Perf-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": "perf_skia_bundled_unix.isolate", + "isolate": "perf_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:MOB30Q", - "device_type:sprout", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -12988,12 +14005,45 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:MOB30Q", + "device_type:sprout", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", + "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-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -13010,45 +14060,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", - "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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:NRD90M_G920TUVU5FQK1", - "device_type:zerofltetmo", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -13060,12 +14083,6 @@ "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", @@ -13082,9 +14099,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -13096,12 +14122,45 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:NRD90M_G920TUVU5FQK1", + "device_type:zerofltetmo", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", + "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-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -13118,45 +14177,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", - "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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:NRD90M_G930AUCS4BQC2", - "device_type:heroqlteatt", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -13168,12 +14200,45 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:NRD90M_G930AUCS4BQC2", + "device_type:heroqlteatt", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", + "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-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -13190,45 +14255,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", - "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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:NRD90M_G930FXXU1DQAS", - "device_type:herolte", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -13240,12 +14278,45 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:NRD90M_G930FXXU1DQAS", + "device_type:herolte", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", + "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-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -13262,45 +14333,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", - "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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:NPJ25.93-14", - "device_type:athene", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -13312,12 +14356,45 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:NPJ25.93-14", + "device_type:athene", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", + "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-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -13334,45 +14411,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", - "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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:NRD90M_1915764_848", - "device_type:foster", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -13384,12 +14434,6 @@ "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", @@ -13406,9 +14450,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -13420,12 +14473,45 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:NRD90M_1915764_848", + "device_type:foster", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_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-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -13442,13 +14528,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13456,12 +14551,6 @@ "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", @@ -13478,13 +14567,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13492,12 +14590,6 @@ "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", @@ -13514,45 +14606,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "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", - "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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:LMY49J_2640980", - "device_type:manta", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -13564,12 +14629,45 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:LMY49J_2640980", + "device_type:manta", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", + "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-arm-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -13586,13 +14684,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Nexus5-GPU-Adreno330-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13600,12 +14707,6 @@ "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", @@ -13622,13 +14723,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Nexus5-GPU-Adreno330-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13636,12 +14746,6 @@ "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", @@ -13658,13 +14762,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13672,12 +14785,6 @@ "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", @@ -13694,13 +14801,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13708,12 +14824,6 @@ "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", @@ -13730,13 +14840,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13744,12 +14863,6 @@ "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", @@ -13766,13 +14879,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13780,12 +14902,6 @@ "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", @@ -13802,13 +14918,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Nexus7-GPU-Tegra3-arm-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13816,12 +14941,6 @@ "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", @@ -13838,13 +14957,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Nexus7-GPU-Tegra3-arm-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13852,12 +14980,6 @@ "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", @@ -13874,13 +14996,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13888,12 +15019,6 @@ "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", @@ -13910,13 +15035,22 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-NexusPlayer-CPU-Moorefield-x86-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13924,12 +15058,6 @@ "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", @@ -13946,13 +15074,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-GPU-PowerVR-x86-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13960,12 +15097,6 @@ "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", @@ -13982,13 +15113,22 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-GPU-PowerVR-x86-Debug-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -13996,12 +15136,6 @@ "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", @@ -14018,13 +15152,22 @@ ], "execution_timeout_ns": 21600000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14032,12 +15175,6 @@ "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", @@ -14054,13 +15191,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14068,12 +15214,6 @@ "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", @@ -14090,45 +15230,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:OPD1.170816.023", - "device_type:taimen", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -14140,14 +15253,8 @@ "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", + "Build-Debian9-Clang-arm64-Debug-Android", "Housekeeper-PerCommit-BundleRecipes", "Housekeeper-PerCommit-IsolateSKP", "Housekeeper-PerCommit-IsolateSVG", @@ -14162,9 +15269,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -14176,12 +15292,45 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Debug-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:OPD1.170816.023", + "device_type:taimen", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", + "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-arm64-Release-Android", "Housekeeper-PerCommit-BundleRecipes", @@ -14198,13 +15347,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14212,12 +15370,6 @@ "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", @@ -14234,13 +15386,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-PixelC-CPU-TegraX1-arm64-Debug-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14248,12 +15409,6 @@ "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", @@ -14270,13 +15425,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-PixelC-CPU-TegraX1-arm64-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14284,12 +15448,6 @@ "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", @@ -14306,45 +15464,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", - "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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device_os:OPR3.170623.008", - "device_type:marlin", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -14356,12 +15487,6 @@ "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", @@ -14378,9 +15503,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -14392,12 +15526,45 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm64-Debug-Android", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device_os:OPR3.170623.008", + "device_type:marlin", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_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-arm64-Debug-Android_Vulkan", "Housekeeper-PerCommit-BundleRecipes", @@ -14414,13 +15581,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Release-All-Android", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14428,12 +15604,6 @@ "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", @@ -14450,13 +15620,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Release-All-Android_Vulkan", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14464,12 +15643,6 @@ "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", @@ -14486,44 +15659,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "gpu:MaliT764", - "os:ChromeOS", - "pool:Skia", - "release_version:10172.0.0" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -14535,12 +15682,44 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "gpu:MaliT764", + "os:ChromeOS", + "pool:Skia", + "release_version:10172.0.0" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-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-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -14556,44 +15735,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "gpu:TegraK1", - "os:ChromeOS", - "pool:Skia", - "release_version:10172.0.0" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -14605,12 +15758,44 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "gpu:TegraK1", + "os:ChromeOS", + "pool:Skia", + "release_version:10172.0.0" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-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-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -14626,13 +15811,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14640,12 +15834,6 @@ "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", @@ -14661,13 +15849,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", + "buildername=Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14675,12 +15872,6 @@ "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", @@ -14696,13 +15887,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", + "buildername=Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14710,12 +15910,6 @@ "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", @@ -14731,13 +15925,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14745,12 +15948,6 @@ "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", @@ -14766,44 +15963,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "gpu:MaliT604", - "os:ChromeOS", - "pool:Skia", - "release_version:9901.12.0" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -14815,12 +15986,44 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "gpu:MaliT604", + "os:ChromeOS", + "pool:Skia", + "release_version:9901.12.0" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-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-arm-Release-Chromebook_GLES", "Housekeeper-PerCommit-BundleRecipes", @@ -14836,13 +16039,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", + "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14850,12 +16062,6 @@ "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", @@ -14871,13 +16077,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", + "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -14885,12 +16100,6 @@ "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", @@ -14906,43 +16115,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP" - ], - "dimensions": [ - "device_os:1.24_82923", - "device_type:chorizo", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -14954,46 +16138,6 @@ "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", - "Housekeeper-PerCommit-IsolateSKP" - ], - "dimensions": [ - "device_os:1.24_82923", - "device_type:chorizo", - "os:Android", - "pool:Skia", - "python:2.7.9" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-Chromecast-GCC-Chorizo-CPU-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_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", @@ -15008,13 +16152,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--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)", @@ -15022,12 +16175,6 @@ "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", @@ -15042,9 +16189,55 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-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-arm-Debug-Chromecast", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP" + ], + "dimensions": [ + "device_os:1.24_82923", + "device_type:chorizo", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "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", + "--workdir", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15056,8 +16249,22 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Debian9-GCC-arm-Release-Chromecast", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP" + ], + "dimensions": [ + "device_os:1.24_82923", + "device_type:chorizo", + "os:Android", + "pool:Skia", + "python:2.7.9" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15079,20 +16286,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15104,8 +16303,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15127,20 +16337,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15152,8 +16354,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15180,20 +16393,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15205,8 +16410,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15233,20 +16449,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15258,8 +16466,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15286,20 +16505,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15311,8 +16522,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15339,20 +16561,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15364,8 +16578,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15392,20 +16617,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15417,8 +16634,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15445,20 +16673,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15470,8 +16690,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15498,20 +16729,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15523,8 +16746,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15551,20 +16785,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15576,8 +16802,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15599,20 +16836,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15624,8 +16853,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15647,20 +16887,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15672,8 +16904,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15695,20 +16938,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -15720,8 +16955,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15743,6 +16989,22 @@ "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" @@ -15754,21 +17016,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15790,6 +17039,22 @@ "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" @@ -15801,21 +17066,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15837,6 +17089,22 @@ "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" @@ -15848,21 +17116,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15884,6 +17139,22 @@ "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" @@ -15895,21 +17166,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15931,6 +17189,22 @@ "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" @@ -15942,21 +17216,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15978,6 +17239,22 @@ "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" @@ -15989,21 +17266,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16025,6 +17289,22 @@ "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" @@ -16036,21 +17316,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16072,6 +17339,22 @@ "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" @@ -16083,21 +17366,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16119,6 +17389,22 @@ "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" @@ -16130,21 +17416,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16166,6 +17439,22 @@ "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" @@ -16177,21 +17466,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16213,6 +17489,22 @@ "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" @@ -16224,21 +17516,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16260,6 +17539,22 @@ "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" @@ -16271,21 +17566,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16307,20 +17589,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16332,8 +17606,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16360,20 +17645,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16385,8 +17662,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16408,20 +17696,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16433,8 +17713,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16456,20 +17747,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16481,8 +17764,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16504,20 +17798,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16529,8 +17815,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16552,20 +17849,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16577,8 +17866,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16600,20 +17900,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16625,8 +17917,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16653,20 +17956,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16678,8 +17973,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16701,20 +18007,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16726,8 +18024,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16749,20 +18058,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16774,8 +18075,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16797,20 +18109,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16822,8 +18126,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16845,20 +18160,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16870,8 +18177,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16893,20 +18211,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16918,8 +18228,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16941,20 +18262,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -16966,8 +18279,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16989,20 +18313,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17014,8 +18330,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17037,20 +18364,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17062,8 +18381,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17085,20 +18415,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17110,8 +18432,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17133,20 +18466,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17158,8 +18483,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17181,20 +18517,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17206,8 +18534,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17229,20 +18568,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17254,8 +18585,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17277,20 +18619,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17302,20 +18636,29 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, "Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_DM_100k_SKPs": { - "dimensions": [ - "pool:SkiaCT", - "os:Debian-9.2" - ], - "execution_timeout_ns": 86400000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "ct_skps", "repository=<(REPO)", "buildername=Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_DM_100k_SKPs", @@ -17326,19 +18669,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "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": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "pool:SkiaCT", "os:Debian-9.2" ], "execution_timeout_ns": 86400000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "ct_skps", "repository=<(REPO)", "buildername=Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_DM_1m_SKPs", @@ -17349,19 +18698,25 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], - "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": { + "dependencies": [ + "Housekeeper-PerCommit-BundleRecipes" + ], "dimensions": [ "pool:SkiaCT", "os:Debian-9.2" ], "execution_timeout_ns": 86400000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "ct_skps", "repository=<(REPO)", "buildername=Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_IMG_DECODE_100k_SKPs", @@ -17372,8 +18727,16 @@ "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": "ct_skps_skia.isolate", + "isolate": "skia_repo.isolate", "priority": 0.8 }, "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All": { @@ -17399,20 +18762,12 @@ "version": "version:4" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17424,8 +18779,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17457,20 +18823,12 @@ "version": "version:4" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17482,8 +18840,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17510,20 +18879,12 @@ "version": "version:6" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17535,8 +18896,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17568,20 +18940,12 @@ "version": "version:6" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17593,8 +18957,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17621,20 +18996,12 @@ "version": "version:4" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17646,8 +19013,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17679,20 +19057,12 @@ "version": "version:4" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17704,8 +19074,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17732,20 +19113,12 @@ "version": "version:6" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17757,8 +19130,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17790,20 +19174,12 @@ "version": "version:6" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17815,8 +19191,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17843,20 +19230,12 @@ "version": "version:4" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17868,8 +19247,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17896,20 +19286,12 @@ "version": "version:6" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17921,8 +19303,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -17949,20 +19342,12 @@ "version": "version:4" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -17974,8 +19359,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18002,20 +19398,12 @@ "version": "version:6" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18027,8 +19415,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18050,20 +19449,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18075,8 +19466,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18103,20 +19505,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18128,8 +19522,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18156,20 +19561,12 @@ "version": "version:0" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18181,8 +19578,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18204,6 +19612,22 @@ "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" @@ -18215,21 +19639,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18256,6 +19667,22 @@ "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" @@ -18267,21 +19694,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18303,20 +19717,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18328,8 +19734,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18356,20 +19773,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18381,8 +19790,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18404,20 +19824,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18429,8 +19841,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18457,20 +19880,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18482,8 +19897,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18510,20 +19936,12 @@ "version": "version:0" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18535,8 +19953,19 @@ "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18563,6 +19992,23 @@ "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" @@ -18575,22 +20021,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18617,6 +20049,23 @@ "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" @@ -18629,22 +20078,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18671,6 +20106,23 @@ "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" @@ -18683,22 +20135,8 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18720,20 +20158,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18745,8 +20175,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18768,20 +20209,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18793,8 +20226,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18816,20 +20260,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18841,8 +20277,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18864,20 +20311,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18889,8 +20328,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18912,20 +20362,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18937,8 +20379,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -18960,20 +20413,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -18985,8 +20430,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19008,20 +20464,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19033,8 +20481,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19056,20 +20515,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19081,8 +20532,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19104,20 +20566,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19129,8 +20583,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19152,20 +20617,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19177,8 +20634,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19200,20 +20668,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19225,8 +20685,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19248,20 +20719,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19273,8 +20736,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19296,20 +20770,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19321,8 +20787,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19344,20 +20821,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19369,8 +20838,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19392,20 +20872,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19417,8 +20889,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19440,20 +20923,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19465,8 +20940,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19488,20 +20974,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19513,8 +20991,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19536,20 +21025,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19561,8 +21042,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19584,20 +21076,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19609,8 +21093,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19632,20 +21127,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19657,8 +21144,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19680,20 +21178,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19705,8 +21195,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19728,20 +21229,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19753,8 +21246,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19776,20 +21280,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19801,8 +21297,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19824,20 +21331,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19849,8 +21348,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19872,20 +21382,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19897,8 +21399,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19920,20 +21433,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19945,8 +21450,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -19968,20 +21484,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -19993,8 +21501,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20016,20 +21535,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20041,8 +21552,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20064,20 +21586,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20089,8 +21603,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20112,20 +21637,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20137,8 +21654,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20160,20 +21688,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20185,8 +21705,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20208,20 +21739,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20233,8 +21756,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20256,20 +21790,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20281,8 +21807,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20304,20 +21841,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20329,8 +21858,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20352,20 +21892,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20377,8 +21909,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20400,20 +21943,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20425,8 +21960,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20448,20 +21994,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20473,8 +22011,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20496,20 +22045,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20521,8 +22062,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20544,20 +22096,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20569,8 +22113,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20592,20 +22147,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20617,8 +22164,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20640,20 +22198,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20665,8 +22215,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20688,20 +22249,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20713,8 +22266,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20736,20 +22300,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -20761,8 +22317,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20784,6 +22351,23 @@ "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" @@ -20796,22 +22380,8 @@ ], "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20833,6 +22403,23 @@ "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" @@ -20845,22 +22432,8 @@ ], "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20882,6 +22455,23 @@ "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" @@ -20894,22 +22484,8 @@ ], "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20931,6 +22507,23 @@ "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" @@ -20943,22 +22536,8 @@ ], "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -20980,6 +22559,23 @@ "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" @@ -20992,22 +22588,8 @@ ], "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21029,6 +22611,23 @@ "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" @@ -21041,22 +22640,8 @@ ], "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21078,20 +22663,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21103,8 +22680,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21126,20 +22714,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21151,8 +22731,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21174,20 +22765,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21199,8 +22782,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21222,20 +22816,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21247,8 +22833,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21270,20 +22867,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21295,8 +22884,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21318,20 +22918,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21343,8 +22935,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21366,20 +22969,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21391,8 +22986,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21414,20 +23020,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21439,8 +23037,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21462,20 +23071,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21487,8 +23088,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21510,20 +23122,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21535,8 +23139,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21558,20 +23173,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21583,8 +23190,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21606,20 +23224,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21631,8 +23241,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21654,20 +23275,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21679,8 +23292,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21702,20 +23326,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21727,8 +23343,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21750,20 +23377,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21775,8 +23394,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21798,20 +23428,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21823,8 +23445,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21846,20 +23479,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21871,8 +23496,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21894,20 +23530,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21919,8 +23547,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21942,20 +23581,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -21967,8 +23598,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -21990,20 +23632,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22015,8 +23649,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22038,20 +23683,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22063,8 +23700,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22086,20 +23734,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22111,8 +23751,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22134,20 +23785,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22159,8 +23802,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22182,20 +23836,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22207,8 +23853,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22230,20 +23887,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22255,8 +23904,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22278,20 +23938,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22303,8 +23955,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22326,20 +23989,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22351,8 +24006,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22374,20 +24040,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22399,8 +24057,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22422,20 +24091,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22447,8 +24108,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22470,20 +24142,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22495,8 +24159,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22518,20 +24193,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22543,8 +24210,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22566,20 +24244,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22591,8 +24261,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22614,20 +24295,12 @@ "version": "version:9" } ], - "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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22639,8 +24312,19 @@ "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_win.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -22662,20 +24346,12 @@ "version": "version:9" } ], - "dependencies": [ - "Build-Win-MSVC-x86-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": [ + "command": [ + "recipe_bundle/recipes.bat", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22687,29 +24363,29 @@ "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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" + "Build-Win-MSVC-x86-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ - "device:iPad6,3", - "os:iOS-10.3.1", + "cpu:x86-64-E5-2670", + "os:Windows-8.1-SP0", "pool:Skia" ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22721,12 +24397,43 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Mac-Clang-arm64-Debug-iOS", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device:iPad6,3", + "os:iOS-10.3.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-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-arm64-Release-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -22741,43 +24448,18 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ - "--workdir", - "../../..", - "test", - "repository=<(REPO)", - "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-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_unix.isolate", + "isolate": "test_skia_bundled.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", - "Housekeeper-PerCommit-IsolateSKP", - "Housekeeper-PerCommit-IsolateSVG", - "Housekeeper-PerCommit-IsolateSkImage" - ], - "dimensions": [ - "device:iPhone7,2", - "os:iOS-10.3.1", - "pool:Skia" - ], - "execution_timeout_ns": 14400000000000, - "expiration_ns": 72000000000000, - "extra_args": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", @@ -22789,12 +24471,43 @@ "patch_issue=<(ISSUE)", "patch_set=<(PATCHSET)" ], + "dependencies": [ + "Build-Mac-Clang-arm64-Debug-iOS", + "Housekeeper-PerCommit-BundleRecipes", + "Housekeeper-PerCommit-IsolateSKP", + "Housekeeper-PerCommit-IsolateSVG", + "Housekeeper-PerCommit-IsolateSkImage" + ], + "dimensions": [ + "device:iPhone7,2", + "os:iOS-10.3.1", + "pool:Skia" + ], + "execution_timeout_ns": 14400000000000, + "expiration_ns": 72000000000000, "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled_unix.isolate", + "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", + "--workdir", + ".", + "test", + "repository=<(REPO)", + "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", + "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-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-arm64-Release-iOS", "Housekeeper-PerCommit-BundleRecipes", @@ -22809,13 +24522,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", + "buildername=Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -22823,12 +24545,6 @@ "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", @@ -22843,13 +24559,22 @@ ], "execution_timeout_ns": 14400000000000, "expiration_ns": 72000000000000, - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "test", "repository=<(REPO)", "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)", - "buildername=Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", + "buildername=Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", "swarm_out_dir=${ISOLATED_OUTDIR}", "revision=<(REVISION)", "patch_repo=<(PATCH_REPO)", @@ -22857,12 +24582,6 @@ "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", @@ -22877,38 +24596,18 @@ ], "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_unix.isolate", + "isolate": "test_skia_bundled.isolate", "max_attempts": 1, "priority": 0.8 }, "Upload-Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_calmbench_results", "repository=<(REPO)", "buildername=Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -22920,12 +24619,8 @@ "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-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" + "Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -22933,9 +24628,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_calmbench_results", "repository=<(REPO)", "buildername=Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -22947,12 +24649,8 @@ "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": [ - "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android" + "Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -22960,9 +24658,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", @@ -22974,12 +24679,9 @@ "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-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android" + "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -22987,9 +24689,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", @@ -23001,12 +24710,9 @@ "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-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android" + "Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23014,9 +24720,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", @@ -23028,12 +24741,9 @@ "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_G930FD-GPU-MaliT880-arm64-Release-All-Android" + "Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23041,9 +24751,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", @@ -23055,12 +24772,9 @@ "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-MotoG4-GPU-Adreno405-arm-Release-All-Android" + "Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23068,9 +24782,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", @@ -23082,12 +24803,9 @@ "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-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android" + "Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23095,9 +24813,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", @@ -23109,12 +24834,9 @@ "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_Vulkan" + "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23122,9 +24844,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", @@ -23136,12 +24865,9 @@ "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-Nexus10-CPU-Exynos5250-arm-Release-All-Android" + "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23149,9 +24875,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", @@ -23163,12 +24896,9 @@ "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-Nexus5-GPU-Adreno330-arm-Release-All-Android" + "Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23176,9 +24906,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", @@ -23190,12 +24927,9 @@ "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-Nexus5x-GPU-Adreno418-arm64-Release-All-Android" + "Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23203,9 +24937,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", @@ -23217,12 +24958,9 @@ "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_Vulkan" + "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23230,9 +24968,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", @@ -23244,12 +24989,9 @@ "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-Nexus7-GPU-Tegra3-arm-Release-All-Android" + "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23257,9 +24999,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", @@ -23271,12 +25020,9 @@ "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-NexusPlayer-GPU-PowerVR-x86-Release-All-Android" + "Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23284,9 +25030,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", @@ -23298,12 +25051,9 @@ "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_Vulkan" + "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23311,9 +25061,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", @@ -23325,12 +25082,9 @@ "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-Pixel-GPU-Adreno530-arm64-Release-All-Android" + "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23338,9 +25092,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android", @@ -23352,12 +25113,9 @@ "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_CCPR_Skpbench" + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23365,9 +25123,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench", @@ -23379,12 +25144,9 @@ "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_Skpbench" + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23392,9 +25154,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench", @@ -23406,12 +25175,9 @@ "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_Vulkan" + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23419,9 +25185,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan", @@ -23433,12 +25206,9 @@ "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_Skpbench" + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23446,9 +25216,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench", @@ -23460,12 +25237,9 @@ "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-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android" + "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23473,9 +25247,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", @@ -23487,12 +25268,9 @@ "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_Vulkan" + "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23500,9 +25278,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", @@ -23514,12 +25299,9 @@ "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-PixelC-CPU-TegraX1-arm64-Release-All-Android" + "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23527,9 +25309,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", @@ -23541,12 +25330,9 @@ "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-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench" + "Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23554,9 +25340,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench", @@ -23568,12 +25361,9 @@ "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_Skpbench" + "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23581,9 +25371,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench", @@ -23595,12 +25392,9 @@ "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_Vulkan_Skpbench" + "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23608,9 +25402,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench", @@ -23622,12 +25423,9 @@ "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-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All" + "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23635,9 +25433,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", @@ -23649,12 +25454,9 @@ "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-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All" + "Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23662,9 +25464,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", @@ -23676,12 +25485,9 @@ "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-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All" + "Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23689,9 +25495,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", @@ -23703,12 +25516,9 @@ "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-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All" + "Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23716,9 +25526,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", @@ -23730,12 +25547,9 @@ "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-SamsungChromebook2012-GPU-MaliT604-arm-Release-All" + "Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23743,9 +25557,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", @@ -23757,12 +25578,9 @@ "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-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All" + "Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23770,9 +25588,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", @@ -23784,12 +25609,9 @@ "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-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All" + "Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23797,9 +25619,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", @@ -23811,12 +25640,9 @@ "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-GPU-Cortex_A7-arm-Release-All" + "Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23824,9 +25650,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", @@ -23838,12 +25671,9 @@ "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-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All" + "Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23851,9 +25681,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -23865,12 +25702,9 @@ "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-Fast" + "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23878,9 +25712,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast", @@ -23892,12 +25733,9 @@ "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-SK_FORCE_RASTER_PIPELINE_BLITTER" + "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23905,9 +25743,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER", @@ -23919,12 +25764,9 @@ "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-AVX512-x86_64-Release-All" + "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23932,9 +25774,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All", @@ -23946,12 +25795,9 @@ "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-GCC-GCE-CPU-AVX2-x86_64-Release-All" + "Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23959,9 +25805,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All", @@ -23973,12 +25826,9 @@ "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-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All" + "Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -23986,9 +25836,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All", @@ -24000,12 +25857,9 @@ "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-GPU-IntelIris5100-x86_64-Release-All" + "Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24013,9 +25867,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All", @@ -24027,12 +25888,9 @@ "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-CommandBuffer" + "Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24040,9 +25898,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer", @@ -24054,12 +25919,9 @@ "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-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All" + "Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24067,9 +25929,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All", @@ -24081,12 +25950,9 @@ "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-Vulkan" + "Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24094,9 +25960,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan", @@ -24108,12 +25981,9 @@ "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-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All" + "Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24121,9 +25991,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", @@ -24135,12 +26012,9 @@ "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-Vulkan" + "Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24148,9 +26022,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", @@ -24162,12 +26043,9 @@ "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-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All" + "Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24175,9 +26053,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All", @@ -24189,12 +26074,9 @@ "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-ShuttleA-GPU-IntelHD2000-x86_64-Release-All" + "Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24202,9 +26084,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All", @@ -24216,12 +26105,9 @@ "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-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" + "Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24229,9 +26115,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -24243,12 +26136,9 @@ "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-Vulkan" + "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24256,9 +26146,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -24270,12 +26167,9 @@ "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-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All" + "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24283,9 +26177,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All", @@ -24297,12 +26198,9 @@ "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-ANGLE" + "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24310,9 +26208,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE", @@ -24324,12 +26229,9 @@ "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-Vulkan" + "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24337,9 +26239,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan", @@ -24351,12 +26260,9 @@ "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-Golo-GPU-GT610-x86_64-Release-All" + "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24364,9 +26270,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All", @@ -24378,12 +26291,9 @@ "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-ANGLE" + "Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24391,9 +26301,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE", @@ -24405,12 +26322,9 @@ "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-QuadroP400-x86_64-Release-All" + "Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24418,9 +26332,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -24432,12 +26353,9 @@ "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-ANGLE" + "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24445,9 +26363,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE", @@ -24459,12 +26384,9 @@ "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-Vulkan" + "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24472,9 +26394,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -24486,12 +26415,9 @@ "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-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All" + "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24499,9 +26425,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All", @@ -24513,12 +26446,9 @@ "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-ANGLE" + "Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24526,9 +26456,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE", @@ -24540,12 +26477,9 @@ "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-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All" + "Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24553,9 +26487,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", @@ -24567,12 +26508,9 @@ "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-ANGLE" + "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24580,9 +26518,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE", @@ -24594,12 +26539,9 @@ "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-Vulkan" + "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24607,9 +26549,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", @@ -24621,12 +26570,9 @@ "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-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All" + "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24634,9 +26580,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All", @@ -24648,12 +26601,9 @@ "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-ANGLE" + "Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24661,9 +26611,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE", @@ -24675,12 +26632,9 @@ "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-ShuttleA-GPU-GTX660-x86_64-Release-All" + "Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24688,9 +26642,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All", @@ -24702,12 +26663,9 @@ "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-ANGLE" + "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24715,9 +26673,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE", @@ -24729,12 +26694,9 @@ "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-Vulkan" + "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24742,9 +26704,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan", @@ -24756,12 +26725,9 @@ "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-RadeonHD7770-x86_64-Release-All" + "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24769,9 +26735,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All", @@ -24783,12 +26756,9 @@ "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-ANGLE" + "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24796,9 +26766,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE", @@ -24810,12 +26787,9 @@ "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-Vulkan" + "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24823,9 +26797,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan", @@ -24837,12 +26818,9 @@ "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-ShuttleC-GPU-GTX960-x86_64-Release-All" + "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24850,9 +26828,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", @@ -24864,12 +26849,9 @@ "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-ANGLE" + "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24877,9 +26859,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", @@ -24891,12 +26880,9 @@ "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-Vulkan" + "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24904,9 +26890,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", @@ -24918,12 +26911,9 @@ "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-ZBOX-GPU-GTX1070-x86_64-Release-All" + "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24931,9 +26921,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All", @@ -24945,12 +26942,9 @@ "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-ANGLE" + "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24958,9 +26952,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE", @@ -24972,12 +26973,9 @@ "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-Vulkan" + "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -24985,9 +26983,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan", @@ -24999,12 +27004,9 @@ "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-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All" + "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25012,9 +27014,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -25026,12 +27035,9 @@ "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-Vulkan" + "Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25039,9 +27045,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -25053,12 +27066,9 @@ "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-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All" + "Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25066,9 +27076,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -25080,12 +27097,9 @@ "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-MSVC-GCE-CPU-AVX2-x86_64-Release-All" + "Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25093,9 +27107,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All", @@ -25107,12 +27128,9 @@ "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-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All" + "Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25120,9 +27138,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -25134,12 +27159,9 @@ "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-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All" + "Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25147,9 +27169,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", @@ -25161,12 +27190,9 @@ "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-iPhone6-GPU-GX6450-arm64-Release-All" + "Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25174,9 +27200,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", @@ -25188,12 +27221,9 @@ "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-iPhone7-GPU-GT7600-arm64-Release-All" + "Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25201,9 +27231,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_nano_results", "repository=<(REPO)", "buildername=Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", @@ -25215,12 +27252,9 @@ "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": [ - "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android" + "Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25228,9 +27262,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android", @@ -25242,12 +27283,9 @@ "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-Release-All-Android" + "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25255,9 +27293,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", @@ -25269,12 +27314,9 @@ "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-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts" + "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25282,9 +27324,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts", @@ -25296,12 +27345,9 @@ "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-GPU-MaliT760-arm64-Debug-All-Android" + "Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25309,9 +27355,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android", @@ -25323,12 +27376,9 @@ "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-Release-All-Android" + "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25336,9 +27386,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", @@ -25350,12 +27407,9 @@ "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-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android" + "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25363,9 +27417,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android", @@ -25377,12 +27438,9 @@ "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-Release-All-Android" + "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25390,9 +27448,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", @@ -25404,12 +27469,9 @@ "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_G930FD-GPU-MaliT880-arm64-Debug-All-Android" + "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25417,9 +27479,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android", @@ -25431,12 +27500,9 @@ "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-Release-All-Android" + "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25444,9 +27510,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", @@ -25458,12 +27531,9 @@ "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-MotoG4-GPU-Adreno405-arm-Debug-All-Android" + "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25471,9 +27541,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android", @@ -25485,12 +27562,9 @@ "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-Release-All-Android" + "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25498,9 +27572,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", @@ -25512,12 +27593,9 @@ "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-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android" + "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25525,9 +27603,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android", @@ -25539,12 +27624,9 @@ "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_CCPR" + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25552,9 +27634,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR", @@ -25566,12 +27655,9 @@ "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_Vulkan" + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25579,9 +27665,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan", @@ -25593,12 +27686,9 @@ "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-Release-All-Android" + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25606,9 +27696,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", @@ -25620,12 +27717,9 @@ "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_Vulkan" + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25633,9 +27727,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", @@ -25647,12 +27748,9 @@ "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-Nexus10-CPU-Exynos5250-arm-Debug-All-Android" + "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25660,9 +27758,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android", @@ -25674,12 +27779,9 @@ "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-Release-All-Android" + "Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25687,9 +27789,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", @@ -25701,12 +27810,9 @@ "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-Nexus5-GPU-Adreno330-arm-Debug-All-Android" + "Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25714,9 +27820,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android", @@ -25728,12 +27841,9 @@ "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-Release-All-Android" + "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25741,9 +27851,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", @@ -25755,12 +27872,9 @@ "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-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android" + "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25768,9 +27882,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android", @@ -25782,12 +27903,9 @@ "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_Vulkan" + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25795,9 +27913,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan", @@ -25809,12 +27934,9 @@ "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-Release-All-Android" + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25822,9 +27944,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", @@ -25836,12 +27965,9 @@ "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_Vulkan" + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25849,9 +27975,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", @@ -25863,12 +27996,9 @@ "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-Nexus7-GPU-Tegra3-arm-Debug-All-Android" + "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25876,9 +28006,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android", @@ -25890,12 +28027,9 @@ "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-Release-All-Android" + "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25903,9 +28037,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", @@ -25917,12 +28058,9 @@ "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-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android" + "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25930,9 +28068,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android", @@ -25944,12 +28089,9 @@ "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-Release-All-Android" + "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25957,9 +28099,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android", @@ -25971,12 +28120,9 @@ "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-GPU-PowerVR-x86-Debug-All-Android" + "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -25984,9 +28130,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android", @@ -25998,12 +28151,9 @@ "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_Vulkan" + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26011,9 +28161,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan", @@ -26025,12 +28182,9 @@ "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-Release-All-Android" + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26038,9 +28192,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", @@ -26052,12 +28213,9 @@ "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_Vulkan" + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26065,9 +28223,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", @@ -26079,12 +28244,9 @@ "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-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android" + "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26092,9 +28254,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android", @@ -26106,12 +28275,9 @@ "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_Vulkan" + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26119,9 +28285,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan", @@ -26133,12 +28306,9 @@ "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-Release-All-Android" + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26146,9 +28316,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", @@ -26160,12 +28337,9 @@ "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_Vulkan" + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26173,9 +28347,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", @@ -26187,12 +28368,9 @@ "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-PixelC-CPU-TegraX1-arm64-Debug-All-Android" + "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26200,9 +28378,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android", @@ -26214,12 +28399,9 @@ "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-Release-All-Android" + "Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26227,9 +28409,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", @@ -26241,12 +28430,9 @@ "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-PixelXL-GPU-Adreno530-arm64-Debug-All-Android" + "Test-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26254,9 +28440,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android", @@ -26268,12 +28461,9 @@ "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_CCPR" + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26281,9 +28471,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR", @@ -26295,12 +28492,9 @@ "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_Vulkan" + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26308,9 +28502,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan", @@ -26322,12 +28523,9 @@ "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-Release-All-Android" + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26335,9 +28533,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android", @@ -26349,12 +28554,9 @@ "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_Vulkan" + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26362,9 +28564,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_Vulkan", @@ -26376,12 +28585,9 @@ "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-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All" + "Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Release-All-Android_Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26389,9 +28595,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All", @@ -26403,12 +28616,9 @@ "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-Release-All" + "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26416,9 +28626,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", @@ -26430,12 +28647,9 @@ "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-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All" + "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26443,9 +28657,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All", @@ -26457,12 +28678,9 @@ "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-Release-All" + "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26470,9 +28688,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", @@ -26484,12 +28709,9 @@ "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-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All" + "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26497,9 +28719,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", @@ -26511,12 +28740,9 @@ "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-Release-All" + "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26524,9 +28750,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", @@ -26538,12 +28771,9 @@ "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-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All" + "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26551,9 +28781,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All", @@ -26565,12 +28802,9 @@ "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-Release-All" + "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26578,9 +28812,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", @@ -26592,12 +28833,9 @@ "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-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All" + "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26605,9 +28843,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All", @@ -26619,12 +28864,9 @@ "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-Release-All" + "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26632,9 +28874,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", @@ -26646,12 +28895,9 @@ "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-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All" + "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26659,9 +28905,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", @@ -26673,12 +28926,9 @@ "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-Release-All" + "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26686,9 +28936,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", @@ -26700,12 +28957,9 @@ "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-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All" + "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26713,9 +28967,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All", @@ -26727,12 +28988,9 @@ "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-Release-All" + "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26740,9 +28998,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", @@ -26754,12 +29019,9 @@ "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-GPU-Cortex_A7-arm-Debug-All" + "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26767,9 +29029,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All", @@ -26781,12 +29050,9 @@ "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-Release-All" + "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26794,9 +29060,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", @@ -26808,12 +29081,9 @@ "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-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All" + "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26821,9 +29091,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All", @@ -26835,12 +29112,9 @@ "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_64-Debug-All" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26848,9 +29122,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All", @@ -26862,12 +29143,9 @@ "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-NativeFonts" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26875,9 +29153,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-NativeFonts", @@ -26889,12 +29174,9 @@ "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-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-NativeFonts", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26902,9 +29184,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", @@ -26916,12 +29205,9 @@ "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-SafeStack" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -26929,9 +29215,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack", @@ -26943,7 +29236,17 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], - "isolate": "upload_dm_results.isolate", + "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", "priority": 0.8 }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-Shard_12-Coverage": { @@ -26954,6 +29257,23 @@ "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", @@ -26975,36 +29295,16 @@ "os:Debian-9.2", "pool:Skia" ], - "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", + "isolate": "swarm_recipe.isolate", "priority": 0.8 }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -27016,12 +29316,9 @@ "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-Fast" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27029,9 +29326,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast", @@ -27043,12 +29347,9 @@ "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-SKNX_NO_SIMD" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27056,9 +29357,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SKNX_NO_SIMD", @@ -27070,12 +29378,9 @@ "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-SK_CPU_LIMIT_SSE2" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SKNX_NO_SIMD", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27083,9 +29388,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE2", @@ -27097,12 +29409,9 @@ "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_SSE41" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE2", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27110,9 +29419,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE41", @@ -27124,12 +29440,9 @@ "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_FORCE_RASTER_PIPELINE_BLITTER" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE41", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27137,9 +29450,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER", @@ -27151,12 +29471,9 @@ "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-AVX512-x86_64-Debug-All" + "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27164,9 +29481,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All", @@ -27178,12 +29502,9 @@ "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-Release-All" + "Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27191,9 +29512,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All", @@ -27205,12 +29533,9 @@ "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-GCC-GCE-CPU-AVX2-x86-Debug-All" + "Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27218,9 +29543,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All", @@ -27232,12 +29564,9 @@ "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_64-Debug-All" + "Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27245,9 +29574,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All", @@ -27259,12 +29595,9 @@ "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-Release-All" + "Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27272,9 +29605,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All", @@ -27286,12 +29626,9 @@ "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-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All" + "Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27299,9 +29636,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All", @@ -27313,12 +29657,9 @@ "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-NativeFonts" + "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27326,9 +29667,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All-NativeFonts", @@ -27340,12 +29688,9 @@ "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-Release-All" + "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All-NativeFonts", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27353,9 +29698,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All", @@ -27367,12 +29719,9 @@ "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-GPU-IntelIris5100-x86_64-Debug-All" + "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27380,9 +29729,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All", @@ -27394,12 +29750,9 @@ "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-CommandBuffer" + "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27407,9 +29760,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer", @@ -27421,12 +29781,9 @@ "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-Release-All" + "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27434,9 +29791,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All", @@ -27448,12 +29812,9 @@ "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-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All" + "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27461,9 +29822,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All", @@ -27475,12 +29843,9 @@ "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-Vulkan" + "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27488,9 +29853,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan", @@ -27502,12 +29874,9 @@ "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-Release-All" + "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27515,9 +29884,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All", @@ -27529,12 +29905,9 @@ "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-Vulkan" + "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27542,9 +29915,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan", @@ -27556,12 +29936,9 @@ "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-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All" + "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27569,9 +29946,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", @@ -27583,12 +29967,9 @@ "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-Vulkan" + "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27596,9 +29977,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", @@ -27610,12 +29998,9 @@ "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-Release-All" + "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27623,9 +30008,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", @@ -27637,12 +30029,9 @@ "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-Vulkan" + "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27650,9 +30039,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", @@ -27664,12 +30060,9 @@ "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-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All" + "Test-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27677,9 +30070,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All", @@ -27691,12 +30091,9 @@ "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-Release-All" + "Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27704,9 +30101,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All", @@ -27718,12 +30122,9 @@ "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-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All" + "Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27731,9 +30132,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All", @@ -27745,12 +30153,9 @@ "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-Release-All" + "Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27758,9 +30163,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All", @@ -27772,12 +30184,9 @@ "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-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All" + "Test-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27785,9 +30194,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", @@ -27799,7 +30215,17 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], - "isolate": "upload_dm_results.isolate", + "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", "priority": 0.8 }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Coverage": { @@ -27810,19 +30236,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_coverage_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Coverage", @@ -27834,12 +30253,9 @@ "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-All-Vulkan" + "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", @@ -27847,9 +30263,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", @@ -27861,7 +30284,17 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], - "isolate": "upload_dm_results.isolate", + "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", "priority": 0.8 }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan_Coverage": { @@ -27872,19 +30305,12 @@ "version": "version:10" } ], - "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": [ + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_coverage_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan_Coverage", @@ -27896,12 +30322,9 @@ "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-Release-All" + "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", @@ -27909,9 +30332,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -27923,12 +30353,9 @@ "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-Vulkan" + "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27936,9 +30363,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -27950,12 +30384,9 @@ "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-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All" + "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27963,9 +30394,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All", @@ -27977,12 +30415,9 @@ "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-ANGLE" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -27990,9 +30425,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE", @@ -28004,12 +30446,9 @@ "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-Vulkan" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28017,9 +30456,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan", @@ -28031,12 +30477,9 @@ "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-Release-All" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28044,9 +30487,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All", @@ -28058,12 +30508,9 @@ "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-ANGLE" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28071,9 +30518,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE", @@ -28085,12 +30539,9 @@ "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-Vulkan" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28098,9 +30549,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan", @@ -28112,12 +30570,9 @@ "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-Golo-GPU-GT610-x86_64-Debug-All" + "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28125,9 +30580,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All", @@ -28139,12 +30601,9 @@ "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-Release-All" + "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28152,9 +30611,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All", @@ -28166,12 +30632,9 @@ "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-ANGLE" + "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28179,9 +30642,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE", @@ -28193,12 +30663,9 @@ "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-QuadroP400-x86_64-Debug-All" + "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28206,9 +30673,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", @@ -28220,12 +30694,9 @@ "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-ANGLE" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28233,9 +30704,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE", @@ -28247,12 +30725,9 @@ "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-Vulkan" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28260,9 +30735,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", @@ -28274,12 +30756,9 @@ "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-Release-All" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28287,9 +30766,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -28301,12 +30787,9 @@ "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-ANGLE" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28314,9 +30797,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE", @@ -28328,12 +30818,9 @@ "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-Vulkan" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28341,9 +30828,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -28355,12 +30849,9 @@ "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-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts" + "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28368,9 +30859,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts", @@ -28382,12 +30880,9 @@ "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-GPU-IntelIris6100-x86_64-Debug-All" + "Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28395,9 +30890,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All", @@ -28409,12 +30911,9 @@ "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-ANGLE" + "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28422,9 +30921,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE", @@ -28436,12 +30942,9 @@ "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-Release-All" + "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28449,9 +30952,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All", @@ -28463,12 +30973,9 @@ "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-ANGLE" + "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28476,9 +30983,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE", @@ -28490,12 +31004,9 @@ "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-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All" + "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28503,9 +31014,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", @@ -28517,12 +31035,9 @@ "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-ANGLE" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28530,9 +31045,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE", @@ -28544,12 +31066,9 @@ "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-Vulkan" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28557,9 +31076,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", @@ -28571,12 +31097,9 @@ "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-Release-All" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28584,9 +31107,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", @@ -28598,12 +31128,9 @@ "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-ANGLE" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28611,9 +31138,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE", @@ -28625,12 +31159,9 @@ "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-Vulkan" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28638,9 +31169,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", @@ -28652,12 +31190,9 @@ "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-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All" + "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28665,9 +31200,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All", @@ -28679,12 +31221,9 @@ "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-ANGLE" + "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28692,9 +31231,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE", @@ -28706,12 +31252,9 @@ "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-Release-All" + "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28719,9 +31262,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All", @@ -28733,12 +31283,9 @@ "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-ANGLE" + "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28746,9 +31293,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE", @@ -28760,12 +31314,9 @@ "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-ShuttleA-GPU-GTX660-x86_64-Debug-All" + "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28773,9 +31324,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All", @@ -28787,12 +31345,9 @@ "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-ANGLE" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28800,9 +31355,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE", @@ -28814,12 +31376,9 @@ "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-Vulkan" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28827,9 +31386,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan", @@ -28841,12 +31407,9 @@ "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-Release-All" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28854,9 +31417,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All", @@ -28868,12 +31438,9 @@ "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-ANGLE" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28881,9 +31448,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE", @@ -28895,12 +31469,9 @@ "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-Vulkan" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28908,9 +31479,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan", @@ -28922,12 +31500,9 @@ "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-RadeonHD7770-x86_64-Debug-All" + "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28935,9 +31510,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All", @@ -28949,12 +31531,9 @@ "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-ANGLE" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28962,9 +31541,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE", @@ -28976,12 +31562,9 @@ "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-Vulkan" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -28989,9 +31572,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan", @@ -29003,12 +31593,9 @@ "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-Release-All" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29016,9 +31603,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All", @@ -29030,12 +31624,9 @@ "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-ANGLE" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29043,9 +31634,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE", @@ -29057,12 +31655,9 @@ "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-Vulkan" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29070,9 +31665,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan", @@ -29084,12 +31686,9 @@ "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-ShuttleC-GPU-GTX960-x86_64-Debug-All" + "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29097,9 +31696,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All", @@ -29111,12 +31717,9 @@ "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-ANGLE" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29124,9 +31727,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE", @@ -29138,12 +31748,9 @@ "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-Vulkan" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29151,9 +31758,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan", @@ -29165,12 +31779,9 @@ "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-Release-All" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29178,9 +31789,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", @@ -29192,12 +31810,9 @@ "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-ANGLE" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29205,9 +31820,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", @@ -29219,12 +31841,9 @@ "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-Vulkan" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29232,9 +31851,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", @@ -29246,12 +31872,9 @@ "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-ZBOX-GPU-GTX1070-x86_64-Debug-All" + "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29259,9 +31882,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All", @@ -29273,12 +31903,9 @@ "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-ANGLE" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29286,9 +31913,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE", @@ -29300,12 +31934,9 @@ "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-Vulkan" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29313,9 +31944,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan", @@ -29327,12 +31965,9 @@ "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-Release-All" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29340,9 +31975,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All", @@ -29354,12 +31996,9 @@ "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-ANGLE" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29367,9 +32006,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE", @@ -29381,12 +32027,9 @@ "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-Vulkan" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29394,9 +32037,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan", @@ -29408,12 +32058,9 @@ "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-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All" + "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29421,9 +32068,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All", @@ -29435,12 +32089,9 @@ "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-Vulkan" + "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29448,9 +32099,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", @@ -29462,12 +32120,9 @@ "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-Release-All" + "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29475,9 +32130,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -29489,12 +32151,9 @@ "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-Vulkan" + "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29502,9 +32161,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", @@ -29516,12 +32182,9 @@ "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-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All" + "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29529,9 +32192,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All", @@ -29543,12 +32213,9 @@ "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-FAAA" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29556,9 +32223,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA", @@ -29570,12 +32244,9 @@ "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-FDAA" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29583,9 +32254,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA", @@ -29597,12 +32275,9 @@ "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-FSAA" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29610,9 +32285,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA", @@ -29624,12 +32306,9 @@ "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-Release-All" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29637,9 +32316,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All", @@ -29651,12 +32337,9 @@ "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-FAAA" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29664,9 +32347,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FAAA", @@ -29678,12 +32368,9 @@ "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-FDAA" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FAAA", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29691,9 +32378,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FDAA", @@ -29705,12 +32399,9 @@ "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-FSAA" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FDAA", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29718,9 +32409,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FSAA", @@ -29732,12 +32430,9 @@ "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-MSVC-GCE-CPU-AVX2-x86-Debug-All" + "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FSAA", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29745,9 +32440,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All", @@ -29759,12 +32461,9 @@ "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-Release-All" + "Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29772,9 +32471,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Release-All", @@ -29786,12 +32492,9 @@ "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_64-Debug-All" + "Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29799,9 +32502,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All", @@ -29813,12 +32523,9 @@ "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-Release-All" + "Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29826,9 +32533,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All", @@ -29840,12 +32554,9 @@ "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-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All" + "Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29853,9 +32564,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", @@ -29867,12 +32585,9 @@ "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-Release-All" + "Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29880,9 +32595,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", @@ -29894,12 +32616,9 @@ "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-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All" + "Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29907,9 +32626,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All", @@ -29921,12 +32647,9 @@ "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-NativeFonts" + "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29934,9 +32657,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts", @@ -29948,12 +32678,9 @@ "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_GDI" + "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29961,9 +32688,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "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", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts_GDI", @@ -29975,12 +32709,9 @@ "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-Release-All" + "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts_GDI", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -29988,9 +32719,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-Clang-Golo-CPU-AVX-x86_64-Release-All", @@ -30002,12 +32740,9 @@ "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-MSVC-Golo-CPU-AVX-x86-Debug-All" + "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30015,9 +32750,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win7-MSVC-Golo-CPU-AVX-x86-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-MSVC-Golo-CPU-AVX-x86-Debug-All", @@ -30029,12 +32771,9 @@ "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-Release-All" + "Test-Win7-MSVC-Golo-CPU-AVX-x86-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30042,9 +32781,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win7-MSVC-Golo-CPU-AVX-x86-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win7-MSVC-Golo-CPU-AVX-x86-Release-All", @@ -30056,12 +32802,9 @@ "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-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All" + "Test-Win7-MSVC-Golo-CPU-AVX-x86-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30069,9 +32812,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All", @@ -30083,12 +32833,9 @@ "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-Release-All" + "Test-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30096,9 +32843,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win8-Clang-Golo-CPU-AVX-x86_64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win8-Clang-Golo-CPU-AVX-x86_64-Release-All", @@ -30110,12 +32864,9 @@ "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-MSVC-Golo-CPU-AVX-x86-Debug-All" + "Test-Win8-Clang-Golo-CPU-AVX-x86_64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30123,9 +32874,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All", @@ -30137,12 +32895,9 @@ "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-Release-All" + "Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30150,9 +32905,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All", @@ -30164,12 +32926,9 @@ "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-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All" + "Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30177,9 +32936,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All", @@ -30191,12 +32957,9 @@ "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-Release-All" + "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30204,9 +32967,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", @@ -30218,12 +32988,9 @@ "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-iPhone6-GPU-GX6450-arm64-Debug-All" + "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30231,9 +32998,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All", @@ -30245,12 +33019,9 @@ "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-Release-All" + "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30258,9 +33029,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", @@ -30272,12 +33050,9 @@ "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-iPhone7-GPU-GT7600-arm64-Debug-All" + "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30285,9 +33060,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", @@ -30299,12 +33081,9 @@ "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-Release-All" + "Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-Haswell_GCE", @@ -30312,9 +33091,16 @@ "os:Debian-9.2", "pool:Skia" ], - "extra_args": [ + "isolate": "swarm_recipe.isolate", + "priority": 0.8 + }, + "Upload-Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { + "command": [ + "recipe_bundle/recipes", + "run", + "--timestamps", "--workdir", - "../../..", + ".", "upload_dm_results", "repository=<(REPO)", "buildername=Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All", @@ -30326,7 +33112,17 @@ "patch_set=<(PATCHSET)", "gs_bucket=skia-infra-gm" ], - "isolate": "upload_dm_results.isolate", + "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", "priority": 0.8 } } diff --git a/infra/bots/test_skia.isolate b/infra/bots/test_skia.isolate deleted file mode 100644 index b220aa5964..0000000000 --- a/infra/bots/test_skia.isolate +++ /dev/null @@ -1,13 +0,0 @@ -{ - '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 dbfe4c3f79..8504083377 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 deleted file mode 100644 index f3be6ea780..0000000000 --- a/infra/bots/test_skia_bundled_unix.isolate +++ /dev/null @@ -1,6 +0,0 @@ -{ - '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 deleted file mode 100644 index cdffa56a68..0000000000 --- a/infra/bots/test_skia_bundled_win.isolate +++ /dev/null @@ -1,6 +0,0 @@ -{ - '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 deleted file mode 100644 index 767fa3af9e..0000000000 --- a/infra/bots/upload_coverage_results.isolate +++ /dev/null @@ -1,10 +0,0 @@ -{ - 'includes': [ - 'swarm_recipe.isolate', - ], - 'variables': { - 'files': [ - '../../../.gclient', - ], - }, -} diff --git a/infra/bots/upload_dm_results.isolate b/infra/bots/upload_dm_results.isolate deleted file mode 100644 index 767fa3af9e..0000000000 --- a/infra/bots/upload_dm_results.isolate +++ /dev/null @@ -1,10 +0,0 @@ -{ - 'includes': [ - 'swarm_recipe.isolate', - ], - 'variables': { - 'files': [ - '../../../.gclient', - ], - }, -} diff --git a/infra/bots/upload_nano_results.isolate b/infra/bots/upload_nano_results.isolate deleted file mode 100644 index 767fa3af9e..0000000000 --- a/infra/bots/upload_nano_results.isolate +++ /dev/null @@ -1,10 +0,0 @@ -{ - 'includes': [ - 'swarm_recipe.isolate', - ], - 'variables': { - 'files': [ - '../../../.gclient', - ], - }, -}