aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
Diffstat (limited to 'infra')
-rw-r--r--infra/bots/bundle_recipes.isolate14
-rwxr-xr-xinfra/bots/bundle_recipes.sh13
-rw-r--r--infra/bots/compile_skia.isolate10
-rw-r--r--infra/bots/coverage_skia.isolate6
-rw-r--r--infra/bots/ct_skps_skia.isolate6
-rw-r--r--infra/bots/empty.isolate1
-rw-r--r--infra/bots/gen_tasks.go380
-rw-r--r--infra/bots/housekeeper_skia.isolate10
-rw-r--r--infra/bots/infra_skia.isolate10
-rw-r--r--infra/bots/infrabots.isolate1
-rw-r--r--infra/bots/isolate_ndk_linux.isolate7
-rw-r--r--infra/bots/isolate_skimage.isolate7
-rw-r--r--infra/bots/isolate_skp.isolate7
-rw-r--r--infra/bots/isolate_svg.isolate7
-rw-r--r--infra/bots/isolate_win_toolchain.isolate7
-rw-r--r--infra/bots/isolate_win_vulkan_sdk.isolate7
-rw-r--r--infra/bots/meta_config.isolate5
-rw-r--r--infra/bots/perf_skia.isolate13
-rw-r--r--infra/bots/perf_skia_bundled.isolate2
-rw-r--r--infra/bots/perf_skia_bundled_unix.isolate6
-rw-r--r--infra/bots/perf_skia_bundled_win.isolate6
-rw-r--r--infra/bots/presubmit_skia.isolate10
-rw-r--r--infra/bots/recipes/bundle_recipes.expected/BundleRecipes.json61
-rw-r--r--infra/bots/recipes/bundle_recipes.py40
-rw-r--r--infra/bots/skpbench_skia.isolate11
-rw-r--r--infra/bots/skpbench_skia_bundled.isolate2
-rw-r--r--infra/bots/skpbench_skia_bundled_unix.isolate6
-rw-r--r--infra/bots/skpbench_skia_bundled_win.isolate6
-rw-r--r--infra/bots/swarm_recipe.isolate4
-rw-r--r--infra/bots/swarm_recipe_bundled_unix.isolate7
-rw-r--r--infra/bots/swarm_recipe_bundled_win.isolate7
-rw-r--r--infra/bots/tasks.json17930
-rw-r--r--infra/bots/test_skia.isolate13
-rw-r--r--infra/bots/test_skia_bundled.isolate2
-rw-r--r--infra/bots/test_skia_bundled_unix.isolate6
-rw-r--r--infra/bots/test_skia_bundled_win.isolate6
-rw-r--r--infra/bots/upload_coverage_results.isolate10
-rw-r--r--infra/bots/upload_dm_results.isolate10
-rw-r--r--infra/bots/upload_nano_results.isolate10
39 files changed, 10575 insertions, 8091 deletions
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,
+ },
+ Dimensions: linuxGceDimensions(),
+ EnvPrefixes: map[string][]string{
+ "PATH": []string{"cipd_bin_packages", "cipd_bin_packages/bin"},
},
- Isolate: relpath("bundle_recipes.isolate"),
+ 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:<PATH>"
- },
- "infra_step": true,
- "name": "git init"
- },
- {
- "cmd": [
- "git",
- "add",
- "."
- ],
- "cwd": "[START_DIR]/skia",
- "env": {
- "PATH": "[START_DIR]/git:[START_DIR]/git/bin:<PATH>"
- },
- "infra_step": true,
- "name": "git add"
- },
- {
- "cmd": [
- "git",
- "commit",
- "-m",
- "commit recipes"
- ],
- "cwd": "[START_DIR]/skia",
- "env": {
- "PATH": "[START_DIR]/git:[START_DIR]/git/bin:<PATH>"
- },
- "infra_step": true,
- "name": "git commit"
- },
- {
- "cmd": [
- "python",
- "[START_DIR]/skia/infra/bots/recipes.py",
- "bundle",
- "--destination",
- "[SWARM_OUT_DIR]/recipe_bundle"
- ],
- "cwd": "[START_DIR]/skia",
- "env": {
- "PATH": "[START_DIR]/git:[START_DIR]/git/bin:<PATH>"
- },
- "infra_step": true,
- "name": "Bundle Recipes"
- },
- {
- "name": "$result",
- "recipe_result": null,
- "status_code": 0
- }
-] \ No newline at end of file
diff --git a/infra/bots/recipes/bundle_recipes.py b/infra/bots/recipes/bundle_recipes.py
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",
- "priority": 0.8
- },
- "Build-Mac-Clang-arm-Debug-iOS": {
+ "dependencies": [
+ "Housekeeper-PerCommit-BundleRecipes"
+ ],
"dimensions": [
- "cpu:x86-64-E5-2697_v2",
+ "cpu:x86-64-Haswell_GCE",
"gpu:none",
- "os:Mac-10.13.1",
+ "os:Debian-9.2",
"pool:Skia"
],
- "extra_args": [
+ "isolate": "swarm_recipe.isolate",
+ "priority": 0.8
+ },
+ "Build-Mac-Clang-arm-Debug-iOS": {
+ "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,6 +5864,25 @@
"version": "version:3"
}
],
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
+ "--workdir",
+ ".",
+ "recreate_skps",
+ "repository=<(REPO)",
+ "buildername=Housekeeper-Weekly-RecreateSKPs",
+ "swarm_out_dir=${ISOLATED_OUTDIR}",
+ "revision=<(REVISION)",
+ "patch_repo=<(PATCH_REPO)",
+ "patch_storage=<(PATCH_STORAGE)",
+ "patch_issue=<(ISSUE)",
+ "patch_set=<(PATCHSET)"
+ ],
+ "dependencies": [
+ "Housekeeper-PerCommit-BundleRecipes"
+ ],
"dimensions": [
"cpu:x86-64-Haswell_GCE",
"gpu:none",
@@ -5384,12 +5890,20 @@
"pool:Skia"
],
"execution_timeout_ns": 14400000000000,
- "extra_args": [
+ "io_timeout_ns": 2400000000000,
+ "isolate": "swarm_recipe.isolate",
+ "priority": 0.8
+ },
+ "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
- "recreate_skps",
+ ".",
+ "perf",
"repository=<(REPO)",
- "buildername=Housekeeper-Weekly-RecreateSKPs",
+ "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5397,11 +5911,6 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
- "io_timeout_ns": 2400000000000,
- "isolate": "compile_skia.isolate",
- "priority": 0.8
- },
- "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5418,12 +5927,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-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-Debug-All-Android",
+ "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5431,12 +5949,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-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5453,12 +5965,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-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android",
+ "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5466,12 +5987,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-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5488,12 +6003,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-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-Debug-All-Android",
+ "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5501,12 +6025,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-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5523,12 +6041,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-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android",
+ "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5536,12 +6063,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-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5558,12 +6079,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-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-Debug-All-Android",
+ "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5571,12 +6101,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-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5593,12 +6117,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-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android",
+ "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5606,12 +6139,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-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5628,12 +6155,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-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-Debug-All-Android",
+ "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5641,12 +6177,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-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5663,12 +6193,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-MotoG4-GPU-Adreno405-arm-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android",
+ "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5676,12 +6215,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-MotoG4-GPU-Adreno405-arm-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5698,12 +6231,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-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-Debug-All-Android",
+ "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5711,12 +6253,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-MotoG4-GPU-Adreno405-arm-Release-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5733,12 +6269,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-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android",
+ "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5746,12 +6291,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-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5768,12 +6307,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-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",
+ "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5781,12 +6329,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-Debug-All-Android_Vulkan": {
"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,12 +6421,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-Nexus10-CPU-Exynos5250-arm-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan",
+ "buildername=Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5886,12 +6443,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-Nexus10-CPU-Exynos5250-arm-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -5908,12 +6459,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-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-Debug-All-Android",
+ "buildername=Perf-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -5921,12 +6481,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-Nexus10-CPU-Exynos5250-arm-Release-All-Android": {
"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,12 +6801,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-CPU-Moorefield-x86-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android",
+ "buildername=Perf-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6236,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-CPU-Moorefield-x86-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-x86-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -6258,12 +6839,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-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android",
+ "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6271,12 +6861,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,12 +6877,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-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",
+ "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6306,12 +6899,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_Vulkan": {
"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,12 +6991,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-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan",
+ "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6411,12 +7013,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-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -6433,12 +7029,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-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",
+ "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6446,12 +7051,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-Debug-All-Android_Vulkan": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android_Vulkan",
"Housekeeper-PerCommit-BundleRecipes",
@@ -6468,12 +7067,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": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan",
+ "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6481,12 +7089,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": {
"dependencies": [
"Build-Debian9-Clang-arm64-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -6503,12 +7105,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_CCPR_Skpbench": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
- "perf",
+ ".",
+ "skpbench",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android",
+ "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6516,12 +7127,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_CCPR_Skpbench": {
"dependencies": [
"Build-Debian9-Clang-arm64-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -6536,12 +7141,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-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_CCPR_Skpbench",
+ "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6549,12 +7163,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,12 +7177,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-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
- "skpbench",
+ ".",
+ "perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench",
+ "buildername=Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6582,12 +7199,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_Vulkan": {
"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,12 +7479,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-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
- "perf",
+ ".",
+ "skpbench",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-PixelC-CPU-TegraX1-arm64-Release-All-Android",
+ "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6860,12 +7501,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-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench": {
"dependencies": [
"Build-Debian9-Clang-arm64-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -6880,12 +7515,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-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_CCPR_Skpbench",
+ "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6893,12 +7537,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,12 +7551,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-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_Skpbench",
+ "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6926,12 +7573,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_Vulkan_Skpbench": {
"dependencies": [
"Build-Debian9-Clang-arm64-Release-Android_Vulkan",
"Housekeeper-PerCommit-BundleRecipes",
@@ -6946,12 +7587,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-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
- "skpbench",
+ ".",
+ "perf",
"repository=<(REPO)",
- "buildername=Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench",
+ "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6959,12 +7609,6 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
- "io_timeout_ns": 2400000000000,
- "isolate": "skpbench_skia_bundled_unix.isolate",
- "max_attempts": 1,
- "priority": 0.8
- },
- "Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Chromebook_GLES",
"Housekeeper-PerCommit-BundleRecipes",
@@ -6980,12 +7624,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-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All",
+ "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -6993,12 +7646,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-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": {
"dependencies": [
"Build-Debian9-Clang-arm-Release-Chromebook_GLES",
"Housekeeper-PerCommit-BundleRecipes",
@@ -7014,12 +7661,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-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All",
+ "buildername=Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -7027,12 +7683,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-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Chromebook_GLES",
"Housekeeper-PerCommit-BundleRecipes",
@@ -7048,12 +7698,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-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-Debug-All",
+ "buildername=Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -7061,12 +7720,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-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": {
"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,12 +7883,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-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All",
+ "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -7231,12 +7905,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-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Chromebook_GLES",
"Housekeeper-PerCommit-BundleRecipes",
@@ -7252,12 +7920,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-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All",
+ "buildername=Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -7265,12 +7942,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-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": {
"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,12 +8031,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-Debug-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All",
+ "buildername=Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -7367,12 +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-Debug-All": {
"dependencies": [
"Build-Debian9-GCC-arm-Debug-Chromecast",
"Housekeeper-PerCommit-BundleRecipes",
@@ -7387,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-CPU-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)",
@@ -7400,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-CPU-Cortex_A7-arm-Release-All": {
"dependencies": [
"Build-Debian9-GCC-arm-Release-Chromecast",
"Housekeeper-PerCommit-BundleRecipes",
@@ -7420,12 +8103,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-GPU-Cortex_A7-arm-Debug-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All",
+ "buildername=Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -7433,12 +8125,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-Debug-All": {
"dependencies": [
"Build-Debian9-GCC-arm-Debug-Chromecast",
"Housekeeper-PerCommit-BundleRecipes",
@@ -7453,12 +8139,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-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-Debug-All",
+ "buildername=Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -7466,12 +8161,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,21 +8175,8 @@
],
"execution_timeout_ns": 14400000000000,
"expiration_ns": 72000000000000,
- "extra_args": [
- "--workdir",
- "../../..",
- "perf",
- "repository=<(REPO)",
- "buildername=Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All",
- "swarm_out_dir=${ISOLATED_OUTDIR}",
- "revision=<(REVISION)",
- "patch_repo=<(PATCH_REPO)",
- "patch_storage=<(PATCH_STORAGE)",
- "patch_issue=<(ISSUE)",
- "patch_set=<(PATCHSET)"
- ],
"io_timeout_ns": 2400000000000,
- "isolate": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -7522,20 +8198,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All",
@@ -7546,8 +8214,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -7569,20 +8248,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All",
@@ -7593,8 +8264,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -7621,20 +8303,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN",
@@ -7645,8 +8319,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -7673,20 +8358,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN",
@@ -7697,8 +8374,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -7720,20 +8408,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE",
@@ -7744,8 +8424,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -7767,20 +8458,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack",
@@ -7791,8 +8474,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -7814,20 +8508,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All",
@@ -7838,8 +8524,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -7866,20 +8563,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN",
@@ -7890,8 +8579,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -7913,20 +8613,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast",
@@ -7937,8 +8629,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -7960,20 +8663,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER",
@@ -7984,8 +8679,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8007,20 +8713,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All",
@@ -8031,8 +8729,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8054,20 +8763,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All",
@@ -8078,8 +8779,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8101,20 +8813,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All",
@@ -8125,8 +8829,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8148,20 +8863,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All",
@@ -8172,8 +8879,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8195,20 +8913,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All",
@@ -8219,8 +8929,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8242,20 +8963,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All",
@@ -8266,8 +8979,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8289,20 +9013,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All",
@@ -8313,8 +9029,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8336,20 +9063,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All",
@@ -8360,8 +9079,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8383,20 +9113,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All",
@@ -8407,8 +9129,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8430,20 +9163,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Mac-Clang-x86_64-Release-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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer",
@@ -8454,20 +9179,29 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Mac-Clang-x86_64-Release-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": "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,20 +9276,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All",
@@ -8552,8 +9292,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8585,20 +9336,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan",
@@ -8609,8 +9352,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8637,20 +9391,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All",
@@ -8661,8 +9407,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8694,20 +9451,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan",
@@ -8718,8 +9467,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8746,20 +9506,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All",
@@ -8770,8 +9522,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8803,20 +9566,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan",
@@ -8827,8 +9582,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8855,20 +9621,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All",
@@ -8879,8 +9637,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8912,20 +9681,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan",
@@ -8936,8 +9697,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -8964,20 +9736,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All",
@@ -8988,8 +9752,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9016,20 +9791,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All",
@@ -9040,8 +9807,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9068,20 +9846,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All",
@@ -9092,8 +9862,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9120,20 +9901,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu16-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All",
@@ -9144,8 +9917,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9167,20 +9951,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All",
@@ -9191,8 +9967,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9219,20 +10006,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ASAN",
@@ -9243,8 +10022,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9271,20 +10061,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan",
@@ -9295,8 +10077,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9318,20 +10111,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All",
@@ -9342,8 +10127,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9370,20 +10166,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ASAN",
@@ -9394,8 +10182,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": "perf_skia_bundled_unix.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9422,20 +10221,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan",
@@ -9446,8 +10237,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": "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,20 +10383,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All",
@@ -9599,8 +10399,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9622,20 +10433,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE",
@@ -9646,8 +10449,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9669,20 +10483,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan",
@@ -9693,8 +10499,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9716,20 +10533,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All",
@@ -9740,8 +10549,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9763,20 +10583,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE",
@@ -9787,8 +10599,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9810,20 +10633,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan",
@@ -9834,8 +10649,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9857,20 +10683,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All",
@@ -9881,8 +10699,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9904,20 +10733,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All",
@@ -9928,8 +10749,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9951,20 +10783,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE",
@@ -9975,8 +10799,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -9998,20 +10833,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All",
@@ -10022,8 +10849,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10045,20 +10883,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE",
@@ -10069,8 +10899,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10092,20 +10933,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan",
@@ -10116,8 +10949,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10139,20 +10983,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All",
@@ -10163,8 +10999,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10186,20 +11033,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE",
@@ -10210,8 +11049,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10233,20 +11083,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan",
@@ -10257,8 +11099,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10280,20 +11133,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All",
@@ -10304,8 +11149,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10327,20 +11183,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE",
@@ -10351,8 +11199,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10374,20 +11233,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All",
@@ -10398,8 +11249,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10421,20 +11283,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE",
@@ -10445,8 +11299,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10468,20 +11333,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All",
@@ -10492,8 +11349,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10515,20 +11383,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE",
@@ -10539,8 +11399,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10562,20 +11433,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan",
@@ -10586,8 +11449,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10609,20 +11483,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All",
@@ -10633,8 +11499,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10656,20 +11533,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE",
@@ -10680,8 +11549,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10703,20 +11583,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan",
@@ -10727,8 +11599,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10750,20 +11633,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All",
@@ -10774,8 +11649,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10797,20 +11683,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE",
@@ -10821,8 +11699,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10844,20 +11733,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All",
@@ -10868,8 +11749,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10891,20 +11783,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE",
@@ -10915,8 +11799,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10938,20 +11833,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All",
@@ -10962,8 +11849,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -10985,20 +11883,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE",
@@ -11009,8 +11899,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11032,20 +11933,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan",
@@ -11056,8 +11949,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11079,20 +11983,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All",
@@ -11103,8 +11999,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11126,20 +12033,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE",
@@ -11150,8 +12049,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11173,20 +12083,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan",
@@ -11197,8 +12099,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11220,20 +12133,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All",
@@ -11244,8 +12149,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11267,20 +12183,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE",
@@ -11291,8 +12199,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11314,20 +12233,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan",
@@ -11338,8 +12249,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11361,20 +12283,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All",
@@ -11385,8 +12299,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11408,20 +12333,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE",
@@ -11432,8 +12349,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11455,20 +12383,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan",
@@ -11479,8 +12399,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": "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,20 +12739,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All",
@@ -11814,8 +12755,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11837,20 +12789,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE",
@@ -11861,8 +12805,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11884,20 +12839,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan",
@@ -11908,8 +12855,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11931,20 +12889,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All",
@@ -11955,8 +12905,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -11978,20 +12939,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE",
@@ -12002,8 +12955,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12025,20 +12989,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan",
@@ -12049,8 +13005,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12072,20 +13039,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All",
@@ -12096,8 +13055,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12119,20 +13089,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan",
@@ -12143,8 +13105,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12166,20 +13139,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All",
@@ -12190,8 +13155,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12213,20 +13189,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan",
@@ -12237,8 +13205,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12260,20 +13239,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All",
@@ -12284,8 +13255,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12307,20 +13289,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All",
@@ -12331,8 +13305,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12354,20 +13339,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All",
@@ -12378,8 +13355,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12401,20 +13389,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All",
@@ -12425,8 +13405,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12448,20 +13439,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All",
@@ -12472,8 +13455,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12495,20 +13489,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All",
@@ -12519,8 +13505,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12542,20 +13539,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All",
@@ -12566,8 +13555,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12589,20 +13589,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All",
@@ -12613,8 +13605,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12636,20 +13639,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win7-MSVC-Golo-CPU-AVX-x86-Debug-All",
@@ -12660,8 +13655,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": "perf_skia_bundled_win.isolate",
+ "isolate": "perf_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -12683,20 +13689,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",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
"buildername=Perf-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All",
@@ -12707,8 +13705,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": "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,12 +13766,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-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All",
+ "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -12754,12 +13788,6 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
- "io_timeout_ns": 2400000000000,
- "isolate": "perf_skia_bundled_win.isolate",
- "max_attempts": 1,
- "priority": 0.8
- },
- "Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": {
"dependencies": [
"Build-Mac-Clang-arm64-Debug-iOS",
"Housekeeper-PerCommit-BundleRecipes",
@@ -12774,12 +13802,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-iPadPro-GPU-GT7800-arm64-Release-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All",
+ "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -12787,12 +13824,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-iPadPro-GPU-GT7800-arm64-Release-All": {
"dependencies": [
"Build-Mac-Clang-arm64-Release-iOS",
"Housekeeper-PerCommit-BundleRecipes",
@@ -12807,12 +13838,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-iPhone6-GPU-GX6450-arm64-Debug-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All",
+ "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -12820,12 +13860,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-iPhone6-GPU-GX6450-arm64-Debug-All": {
"dependencies": [
"Build-Mac-Clang-arm64-Debug-iOS",
"Housekeeper-PerCommit-BundleRecipes",
@@ -12840,12 +13874,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-iPhone6-GPU-GX6450-arm64-Release-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"perf",
"repository=<(REPO)",
- "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All",
+ "buildername=Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -12853,12 +13896,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-iPhone6-GPU-GX6450-arm64-Release-All": {
"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,12 +13982,22 @@
],
"execution_timeout_ns": 14400000000000,
"expiration_ns": 72000000000000,
- "extra_args": [
+ "io_timeout_ns": 2400000000000,
+ "isolate": "perf_skia_bundled.isolate",
+ "max_attempts": 1,
+ "priority": 0.8
+ },
+ "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
- "perf",
+ ".",
+ "test",
"repository=<(REPO)",
- "buildername=Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All",
+ "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)",
+ "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -12952,12 +14005,6 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
- "io_timeout_ns": 2400000000000,
- "isolate": "perf_skia_bundled_unix.isolate",
- "max_attempts": 1,
- "priority": 0.8
- },
- "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -12974,13 +14021,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-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-Debug-All-Android",
+ "buildername=Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -12988,12 +14044,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-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -13010,13 +14060,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-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts": {
+ "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",
+ "buildername=Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13024,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-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -13046,13 +14099,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-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"test",
"repository=<(REPO)",
"buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)",
- "buildername=Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts",
+ "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13060,12 +14122,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,13 +14138,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-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-Debug-All-Android",
+ "buildername=Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13096,12 +14161,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-Release-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -13118,13 +14177,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-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-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",
+ "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13132,12 +14200,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-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -13154,13 +14216,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-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-Debug-All-Android",
+ "buildername=Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13168,12 +14239,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-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -13190,13 +14255,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-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-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",
+ "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13204,12 +14278,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-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -13226,13 +14294,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-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-Debug-All-Android",
+ "buildername=Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13240,12 +14317,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-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -13262,13 +14333,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-MotoG4-GPU-Adreno405-arm-Debug-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",
+ "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13276,12 +14356,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-MotoG4-GPU-Adreno405-arm-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -13298,13 +14372,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-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-Debug-All-Android",
+ "buildername=Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13312,12 +14395,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-MotoG4-GPU-Adreno405-arm-Release-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm-Release-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -13334,13 +14411,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-Debug-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",
+ "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13348,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": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -13370,13 +14450,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-Debug-All-Android_CCPR": {
+ "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",
+ "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13384,12 +14473,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,13 +14489,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-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_CCPR",
+ "buildername=Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13420,12 +14512,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_Vulkan": {
"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,13 +14606,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-Nexus10-CPU-Exynos5250-arm-Debug-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-Release-All-Android_Vulkan",
+ "buildername=Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13528,12 +14629,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-Nexus10-CPU-Exynos5250-arm-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -13550,13 +14645,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-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-Debug-All-Android",
+ "buildername=Test-Android-Clang-Nexus10-CPU-Exynos5250-arm-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -13564,12 +14668,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-Nexus10-CPU-Exynos5250-arm-Release-All-Android": {
"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,13 +15230,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-Debug-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-Release-All-Android_Vulkan",
+ "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14104,12 +15253,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-Debug-All-Android": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -14126,13 +15269,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-Debug-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-Debug-All-Android",
+ "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14140,12 +15292,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-Debug-All-Android_Vulkan": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android_Vulkan",
"Housekeeper-PerCommit-BundleRecipes",
@@ -14162,13 +15308,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": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"test",
"repository=<(REPO)",
"buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)",
- "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan",
+ "buildername=Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14176,12 +15331,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": {
"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,13 +15464,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-Debug-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-Release-All-Android",
+ "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14320,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": {
"dependencies": [
"Build-Debian9-Clang-arm64-Debug-Android",
"Housekeeper-PerCommit-BundleRecipes",
@@ -14342,13 +15503,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-Debug-All-Android_CCPR": {
+ "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",
+ "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_CCPR",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14356,12 +15526,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,13 +15542,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-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_CCPR",
+ "buildername=Test-Android-Clang-PixelXL-GPU-Adreno530-arm64-Debug-All-Android_Vulkan",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14392,12 +15565,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_Vulkan": {
"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,13 +15659,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-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": {
+ "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_Vulkan",
+ "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14500,12 +15682,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-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Chromebook_GLES",
"Housekeeper-PerCommit-BundleRecipes",
@@ -14521,13 +15697,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-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-Debug-All",
+ "buildername=Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14535,12 +15720,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-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": {
"dependencies": [
"Build-Debian9-Clang-arm-Release-Chromebook_GLES",
"Housekeeper-PerCommit-BundleRecipes",
@@ -14556,13 +15735,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-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-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",
+ "buildername=Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14570,12 +15758,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-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Chromebook_GLES",
"Housekeeper-PerCommit-BundleRecipes",
@@ -14591,13 +15773,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-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-Debug-All",
+ "buildername=Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14605,12 +15796,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-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": {
"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,13 +15963,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-SamsungChromebook2012-GPU-MaliT604-arm-Debug-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-Release-All",
+ "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14780,12 +15986,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-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": {
"dependencies": [
"Build-Debian9-Clang-arm-Debug-Chromebook_GLES",
"Housekeeper-PerCommit-BundleRecipes",
@@ -14801,13 +16001,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-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-Debug-All",
+ "buildername=Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14815,12 +16024,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-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": {
"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,13 +16115,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-Debug-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-Release-All",
+ "buildername=Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14920,12 +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-Debug-All": {
"dependencies": [
"Build-Debian9-GCC-arm-Debug-Chromecast",
"Housekeeper-PerCommit-BundleRecipes",
@@ -14940,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-CPU-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)",
@@ -14954,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-CPU-Cortex_A7-arm-Release-All": {
"dependencies": [
"Build-Debian9-GCC-arm-Release-Chromecast",
"Housekeeper-PerCommit-BundleRecipes",
@@ -14974,13 +16189,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-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-CPU-Cortex_A7-arm-Release-All",
+ "buildername=Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -14988,12 +16212,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-Debug-All": {
"dependencies": [
"Build-Debian9-GCC-arm-Debug-Chromecast",
"Housekeeper-PerCommit-BundleRecipes",
@@ -15008,13 +16226,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-GPU-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-GPU-Cortex_A7-arm-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -15022,12 +16249,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,22 +16263,8 @@
],
"execution_timeout_ns": 14400000000000,
"expiration_ns": 72000000000000,
- "extra_args": [
- "--workdir",
- "../../..",
- "test",
- "repository=<(REPO)",
- "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)",
- "buildername=Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All",
- "swarm_out_dir=${ISOLATED_OUTDIR}",
- "revision=<(REVISION)",
- "patch_repo=<(PATCH_REPO)",
- "patch_storage=<(PATCH_STORAGE)",
- "patch_issue=<(ISSUE)",
- "patch_set=<(PATCHSET)"
- ],
"io_timeout_ns": 2400000000000,
- "isolate": "test_skia_bundled_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,20 +16989,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_00_12-Coverage",
@@ -15767,8 +17005,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -15790,20 +17039,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_01_12-Coverage",
@@ -15814,8 +17055,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -15837,20 +17089,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_02_12-Coverage",
@@ -15861,8 +17105,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -15884,20 +17139,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_03_12-Coverage",
@@ -15908,8 +17155,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -15931,20 +17189,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_04_12-Coverage",
@@ -15955,8 +17205,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -15978,20 +17239,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_05_12-Coverage",
@@ -16002,8 +17255,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -16025,20 +17289,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_06_12-Coverage",
@@ -16049,8 +17305,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -16072,20 +17339,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_07_12-Coverage",
@@ -16096,8 +17355,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -16119,20 +17389,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_08_12-Coverage",
@@ -16143,8 +17405,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -16166,20 +17439,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_09_12-Coverage",
@@ -16190,8 +17455,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -16213,20 +17489,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_10_12-Coverage",
@@ -16237,8 +17505,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -16260,20 +17539,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_11_12-Coverage",
@@ -16284,8 +17555,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -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,20 +19612,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Coverage",
- "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)",
"buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Coverage",
@@ -18228,8 +19628,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Coverage",
+ "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
},
@@ -18256,20 +19667,12 @@
"version": "version:0"
}
],
- "dependencies": [
- "Build-Debian9-Clang-x86_64-Debug-Vulkan_Coverage",
- "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)",
"buildername=Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Vulkan_Coverage",
@@ -18280,8 +19683,19 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-Clang-x86_64-Debug-Vulkan_Coverage",
+ "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
},
@@ -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,21 +19992,12 @@
"version": "version:7"
}
],
- "dependencies": [
- "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41",
- "Housekeeper-PerCommit-BundleRecipes"
- ],
- "dimensions": [
- "gpu:10de:1cb3-384.59",
- "os:Ubuntu-17.04",
- "pool:Skia",
- "valgrind:1"
- ],
- "execution_timeout_ns": 32400000000000,
- "expiration_ns": 172800000000000,
- "extra_args": [
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"test",
"repository=<(REPO)",
"buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)",
@@ -18589,8 +20009,20 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41",
+ "Housekeeper-PerCommit-BundleRecipes"
+ ],
+ "dimensions": [
+ "gpu:10de:1cb3-384.59",
+ "os:Ubuntu-17.04",
+ "pool:Skia",
+ "valgrind:1"
+ ],
+ "execution_timeout_ns": 32400000000000,
+ "expiration_ns": 172800000000000,
"io_timeout_ns": 3600000000000,
- "isolate": "test_skia_bundled_unix.isolate",
+ "isolate": "test_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -18617,21 +20049,12 @@
"version": "version:7"
}
],
- "dependencies": [
- "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41",
- "Housekeeper-PerCommit-BundleRecipes"
- ],
- "dimensions": [
- "gpu:10de:1cb3-384.59",
- "os:Ubuntu-17.04",
- "pool:Skia",
- "valgrind:1"
- ],
- "execution_timeout_ns": 32400000000000,
- "expiration_ns": 172800000000000,
- "extra_args": [
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"test",
"repository=<(REPO)",
"buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)",
@@ -18643,8 +20066,20 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41",
+ "Housekeeper-PerCommit-BundleRecipes"
+ ],
+ "dimensions": [
+ "gpu:10de:1cb3-384.59",
+ "os:Ubuntu-17.04",
+ "pool:Skia",
+ "valgrind:1"
+ ],
+ "execution_timeout_ns": 32400000000000,
+ "expiration_ns": 172800000000000,
"io_timeout_ns": 3600000000000,
- "isolate": "test_skia_bundled_unix.isolate",
+ "isolate": "test_skia_bundled.isolate",
"max_attempts": 1,
"priority": 0.8
},
@@ -18671,21 +20106,12 @@
"version": "version:7"
}
],
- "dependencies": [
- "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41",
- "Housekeeper-PerCommit-BundleRecipes"
- ],
- "dimensions": [
- "gpu:10de:1cb3-384.59",
- "os:Ubuntu-17.04",
- "pool:Skia",
- "valgrind:1"
- ],
- "execution_timeout_ns": 32400000000000,
- "expiration_ns": 172800000000000,
- "extra_args": [
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"test",
"repository=<(REPO)",
"buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)",
@@ -18697,8 +20123,20 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41",
+ "Housekeeper-PerCommit-BundleRecipes"
+ ],
+ "dimensions": [
+ "gpu:10de:1cb3-384.59",
+ "os:Ubuntu-17.04",
+ "pool:Skia",
+ "valgrind:1"
+ ],
+ "execution_timeout_ns": 32400000000000,
+ "expiration_ns": 172800000000000,
"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,21 +22351,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Win-Clang-x86_64-Debug",
- "Housekeeper-PerCommit-BundleRecipes"
- ],
- "dimensions": [
- "cpu:x86-64-i7-6700K",
- "gpu:10de:1401-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)",
@@ -20810,8 +22368,20 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Win-Clang-x86_64-Debug",
+ "Housekeeper-PerCommit-BundleRecipes"
+ ],
+ "dimensions": [
+ "cpu:x86-64-i7-6700K",
+ "gpu:10de:1401-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
},
@@ -20833,21 +22403,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Win-Clang-x86_64-Debug-ANGLE",
- "Housekeeper-PerCommit-BundleRecipes"
- ],
- "dimensions": [
- "cpu:x86-64-i7-6700K",
- "gpu:10de:1401-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)",
@@ -20859,8 +22420,20 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Win-Clang-x86_64-Debug-ANGLE",
+ "Housekeeper-PerCommit-BundleRecipes"
+ ],
+ "dimensions": [
+ "cpu:x86-64-i7-6700K",
+ "gpu:10de:1401-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
},
@@ -20882,21 +22455,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Win-Clang-x86_64-Debug-Vulkan",
- "Housekeeper-PerCommit-BundleRecipes"
- ],
- "dimensions": [
- "cpu:x86-64-i7-6700K",
- "gpu:10de:1401-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)",
@@ -20908,8 +22472,20 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Win-Clang-x86_64-Debug-Vulkan",
+ "Housekeeper-PerCommit-BundleRecipes"
+ ],
+ "dimensions": [
+ "cpu:x86-64-i7-6700K",
+ "gpu:10de:1401-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
},
@@ -20931,21 +22507,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Win-Clang-x86_64-Release",
- "Housekeeper-PerCommit-BundleRecipes"
- ],
- "dimensions": [
- "cpu:x86-64-i7-6700K",
- "gpu:10de:1401-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)",
@@ -20957,8 +22524,20 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Win-Clang-x86_64-Release",
+ "Housekeeper-PerCommit-BundleRecipes"
+ ],
+ "dimensions": [
+ "cpu:x86-64-i7-6700K",
+ "gpu:10de:1401-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
},
@@ -20980,21 +22559,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Win-Clang-x86_64-Release-ANGLE",
- "Housekeeper-PerCommit-BundleRecipes"
- ],
- "dimensions": [
- "cpu:x86-64-i7-6700K",
- "gpu:10de:1401-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)",
@@ -21006,8 +22576,20 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Win-Clang-x86_64-Release-ANGLE",
+ "Housekeeper-PerCommit-BundleRecipes"
+ ],
+ "dimensions": [
+ "cpu:x86-64-i7-6700K",
+ "gpu:10de:1401-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
},
@@ -21029,21 +22611,12 @@
"version": "version:9"
}
],
- "dependencies": [
- "Build-Win-Clang-x86_64-Release-Vulkan",
- "Housekeeper-PerCommit-BundleRecipes"
- ],
- "dimensions": [
- "cpu:x86-64-i7-6700K",
- "gpu:10de:1401-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)",
@@ -21055,8 +22628,20 @@
"patch_issue=<(ISSUE)",
"patch_set=<(PATCHSET)"
],
+ "dependencies": [
+ "Build-Win-Clang-x86_64-Release-Vulkan",
+ "Housekeeper-PerCommit-BundleRecipes"
+ ],
+ "dimensions": [
+ "cpu:x86-64-i7-6700K",
+ "gpu:10de:1401-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
},
@@ -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,6 +24346,23 @@
"version": "version:9"
}
],
+ "command": [
+ "recipe_bundle/recipes.bat",
+ "run",
+ "--timestamps",
+ "--workdir",
+ ".",
+ "test",
+ "repository=<(REPO)",
+ "buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)",
+ "buildername=Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All",
+ "swarm_out_dir=${ISOLATED_OUTDIR}",
+ "revision=<(REVISION)",
+ "patch_repo=<(PATCH_REPO)",
+ "patch_storage=<(PATCH_STORAGE)",
+ "patch_issue=<(ISSUE)",
+ "patch_set=<(PATCHSET)"
+ ],
"dependencies": [
"Build-Win-MSVC-x86-Release",
"Housekeeper-PerCommit-BundleRecipes"
@@ -22673,13 +24374,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-iPadPro-GPU-GT7800-arm64-Debug-All": {
+ "command": [
+ "recipe_bundle/recipes",
+ "run",
+ "--timestamps",
"--workdir",
- "../../..",
+ ".",
"test",
"repository=<(REPO)",
"buildbucket_build_id=<(BUILDBUCKET_BUILD_ID)",
- "buildername=Test-Win8-MSVC-Golo-CPU-AVX-x86-Release-All",
+ "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -22687,12 +24397,6 @@
"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",
@@ -22707,13 +24411,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-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-Debug-All",
+ "buildername=Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -22721,12 +24434,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-iPadPro-GPU-GT7800-arm64-Release-All": {
"dependencies": [
"Build-Mac-Clang-arm64-Release-iOS",
"Housekeeper-PerCommit-BundleRecipes",
@@ -22741,13 +24448,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-iPhone6-GPU-GX6450-arm64-Debug-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",
+ "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -22755,12 +24471,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-iPhone6-GPU-GX6450-arm64-Debug-All": {
"dependencies": [
"Build-Mac-Clang-arm64-Debug-iOS",
"Housekeeper-PerCommit-BundleRecipes",
@@ -22775,13 +24485,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-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-Debug-All",
+ "buildername=Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All",
"swarm_out_dir=${ISOLATED_OUTDIR}",
"revision=<(REVISION)",
"patch_repo=<(PATCH_REPO)",
@@ -22789,12 +24508,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-iPhone6-GPU-GX6450-arm64-Release-All": {
"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',
- ],
- },
-}