diff options
author | Eric Boren <borenet@google.com> | 2018-04-27 13:14:38 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-04-27 18:18:48 +0000 |
commit | 5cb5c74efdac46a1f9af37ff9707bc9d2c900083 (patch) | |
tree | b524e7c406c3be46682c55592bde1e1bf8722342 /infra | |
parent | f80989f5f08dcb78881daebdc22b306f82f4f17b (diff) |
Reland "[recipes] Use named caches for git and workdirs"
This reverts commit 01d3eb64e7b11b22cf206758f01b06a7ae0bbb20.
Bug: skia:
Change-Id: Ic05b89009eb59a231488bef382dd232a50d2b00f
Reviewed-on: https://skia-review.googlesource.com/124260
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
Diffstat (limited to 'infra')
99 files changed, 8978 insertions, 1283 deletions
diff --git a/infra/bots/gen_tasks.go b/infra/bots/gen_tasks.go index 2f3e97e38e..920dc3a84e 100644 --- a/infra/bots/gen_tasks.go +++ b/infra/bots/gen_tasks.go @@ -108,6 +108,24 @@ var ( // Defines the structure of job names. jobNameSchema *JobNameSchema + // Named caches used by tasks. + CACHES_GIT = []*specs.Cache{ + &specs.Cache{ + Name: "git", + Path: "cache/git", + }, + &specs.Cache{ + Name: "git_cache", + Path: "cache/git_cache", + }, + } + CACHES_WORKDIR = []*specs.Cache{ + &specs.Cache{ + Name: "work", + Path: "cache/work", + }, + } + // TODO(borenet): Roll these versions automatically! CIPD_PKGS_PYTHON = []*specs.CipdPackage{ &specs.CipdPackage{ @@ -221,7 +239,13 @@ func kitchenTask(name, recipe, isolate, serviceAccount string, dimensions []stri if outputDir != OUTPUT_NONE { outputs = []string{outputDir} } - return &specs.TaskSpec{ + task := &specs.TaskSpec{ + Caches: []*specs.Cache{ + &specs.Cache{ + Name: "vpython", + Path: "cache/vpython", + }, + }, CipdPackages: cipd, Command: []string{ "./kitchen${EXECUTABLE_SUFFIX}", "cook", @@ -260,6 +284,8 @@ func kitchenTask(name, recipe, isolate, serviceAccount string, dimensions []stri Priority: 0.8, ServiceAccount: serviceAccount, } + timeout(task, time.Hour) + return task } // internalHardwareLabel returns the internal ID for the bot, if any. @@ -667,11 +693,26 @@ func getIsolatedCIPDDeps(parts map[string]string) []string { return deps } +// usesGit adds attributes to tasks which use git. +func usesGit(t *specs.TaskSpec, name string) { + t.Caches = append(t.Caches, CACHES_GIT...) + if !strings.Contains(name, "NoDEPS") { + t.Caches = append(t.Caches, CACHES_WORKDIR...) + } + t.CipdPackages = append(t.CipdPackages, CIPD_PKGS_GIT...) +} + +// timeout sets the timeout(s) for this task. +func timeout(task *specs.TaskSpec, timeout time.Duration) { + task.ExecutionTimeout = timeout + task.IoTimeout = timeout // With kitchen, step logs don't count toward IoTimeout. +} + // compile generates a compile task. Returns the name of the last task in the // generated chain of tasks, which the Job should add as a dependency. func compile(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { task := kitchenTask(name, "compile", "swarm_recipe.isolate", SERVICE_ACCOUNT_COMPILE, swarmDimensions(parts), nil, OUTPUT_BUILD) - task.CipdPackages = append(task.CipdPackages, CIPD_PKGS_GIT...) + usesGit(task, name) // Android bots require a toolchain. if strings.Contains(name, "Android") { @@ -701,6 +742,8 @@ func compile(b *specs.TasksCfgBuilder, name string, parts map[string]string) str task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("armhf_sysroot")) task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("chromebook_arm_gles")) } + } else if strings.Contains(name, "CommandBuffer") { + timeout(task, 2*time.Hour) } else if strings.Contains(name, "Debian") { if strings.Contains(name, "Clang") { task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("clang_linux")) @@ -767,8 +810,7 @@ func recreateSKPs(b *specs.TasksCfgBuilder, name string) string { task := kitchenTask(name, "recreate_skps", "swarm_recipe.isolate", SERVICE_ACCOUNT_RECREATE_SKPS, linuxGceDimensions(), nil, OUTPUT_NONE) task.CipdPackages = append(task.CipdPackages, CIPD_PKGS_GIT...) task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("go")) - task.ExecutionTimeout = 4 * time.Hour - task.IoTimeout = 4 * time.Hour // With kitchen, step logs don't count toward IoTimeout. + timeout(task, 4*time.Hour) b.MustAddTask(name, task) return name } @@ -781,10 +823,9 @@ func ctSKPs(b *specs.TasksCfgBuilder, name string) string { fmt.Sprintf("os:%s", DEFAULT_OS_LINUX_GCE), } task := kitchenTask(name, "ct_skps", "skia_repo.isolate", SERVICE_ACCOUNT_CT_SKPS, dims, nil, OUTPUT_NONE) - task.CipdPackages = append(task.CipdPackages, CIPD_PKGS_GIT...) + usesGit(task, name) task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("clang_linux")) - task.ExecutionTimeout = 24 * time.Hour - task.IoTimeout = 24 * time.Hour + timeout(task, 24*time.Hour) task.MaxAttempts = 1 b.MustAddTask(name, task) return name @@ -794,6 +835,7 @@ func ctSKPs(b *specs.TasksCfgBuilder, name string) string { // by hand. func checkGeneratedFiles(b *specs.TasksCfgBuilder, name string) string { task := kitchenTask(name, "check_generated_files", "swarm_recipe.isolate", SERVICE_ACCOUNT_COMPILE, linuxGceDimensions(), nil, OUTPUT_NONE) + task.Caches = append(task.Caches, CACHES_WORKDIR...) b.MustAddTask(name, task) return name } @@ -802,7 +844,7 @@ func checkGeneratedFiles(b *specs.TasksCfgBuilder, name string) string { // in the generated chain of tasks, which the Job should add as a dependency. func housekeeper(b *specs.TasksCfgBuilder, name, compileTaskName string) string { task := kitchenTask(name, "housekeeper", "swarm_recipe.isolate", SERVICE_ACCOUNT_HOUSEKEEPER, linuxGceDimensions(), nil, OUTPUT_NONE) - task.CipdPackages = append(task.CipdPackages, CIPD_PKGS_GIT...) + usesGit(task, name) task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("go")) task.Dependencies = append(task.Dependencies, compileTaskName) b.MustAddTask(name, task) @@ -813,11 +855,11 @@ func housekeeper(b *specs.TasksCfgBuilder, name, compileTaskName string) string // in the generated chain of tasks, which the Job should add as a dependency. func bookmaker(b *specs.TasksCfgBuilder, name, compileTaskName string) string { task := kitchenTask(name, "bookmaker", "swarm_recipe.isolate", SERVICE_ACCOUNT_BOOKMAKER, linuxGceDimensions(), nil, OUTPUT_NONE) + task.Caches = append(task.Caches, CACHES_WORKDIR...) task.CipdPackages = append(task.CipdPackages, CIPD_PKGS_GIT...) task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("go")) task.Dependencies = append(task.Dependencies, compileTaskName) - task.ExecutionTimeout = 2 * time.Hour - task.IoTimeout = 2 * time.Hour + timeout(task, 2*time.Hour) b.MustAddTask(name, task) return name } @@ -827,9 +869,8 @@ func bookmaker(b *specs.TasksCfgBuilder, name, compileTaskName string) string { // should add as a dependency. func androidFrameworkCompile(b *specs.TasksCfgBuilder, name string) string { task := kitchenTask(name, "android_compile", "swarm_recipe.isolate", SERVICE_ACCOUNT_COMPILE, linuxGceDimensions(), nil, OUTPUT_NONE) - task.ExecutionTimeout = 1 * time.Hour - task.IoTimeout = 1 * time.Hour task.MaxAttempts = 1 + timeout(task, time.Hour) b.MustAddTask(name, task) return name } @@ -838,7 +879,7 @@ func androidFrameworkCompile(b *specs.TasksCfgBuilder, name string) string { // generated chain of tasks, which the Job should add as a dependency. func infra(b *specs.TasksCfgBuilder, name string) string { task := kitchenTask(name, "infra", "swarm_recipe.isolate", SERVICE_ACCOUNT_COMPILE, linuxGceDimensions(), nil, OUTPUT_NONE) - task.CipdPackages = append(task.CipdPackages, CIPD_PKGS_GIT...) + usesGit(task, name) task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("go")) b.MustAddTask(name, task) return name @@ -856,7 +897,7 @@ func getParentRevisionName(compileTaskName string, parts map[string]string) stri // generated chain of tasks, which the Job should add as a dependency. func calmbench(b *specs.TasksCfgBuilder, name string, parts map[string]string, compileTaskName, compileParentName string) string { task := kitchenTask(name, "calmbench", "calmbench.isolate", "", swarmDimensions(parts), nil, OUTPUT_PERF) - task.CipdPackages = append(task.CipdPackages, CIPD_PKGS_GIT...) + usesGit(task, name) task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("go")) task.Dependencies = append(task.Dependencies, compileTaskName, compileParentName, ISOLATE_SKP_NAME, ISOLATE_SVG_NAME) task.MaxAttempts = 1 @@ -916,23 +957,19 @@ func test(b *specs.TasksCfgBuilder, name string, parts map[string]string, compil if deps := getIsolatedCIPDDeps(parts); len(deps) > 0 { task.Dependencies = append(task.Dependencies, deps...) } - task.ExecutionTimeout = 4 * time.Hour task.Expiration = 20 * time.Hour - task.IoTimeout = 4 * time.Hour task.MaxAttempts = 1 + timeout(task, 4*time.Hour) if strings.Contains(parts["extra_config"], "Valgrind") { - task.ExecutionTimeout = 9 * time.Hour + timeout(task, 9*time.Hour) task.Expiration = 48 * time.Hour - task.IoTimeout = 9 * time.Hour task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("valgrind")) task.Dimensions = append(task.Dimensions, "valgrind:1") } else if strings.Contains(parts["extra_config"], "MSAN") { - task.ExecutionTimeout = 9 * time.Hour - task.IoTimeout = 9 * time.Hour + timeout(task, 9*time.Hour) } else if parts["arch"] == "x86" && parts["configuration"] == "Debug" { // skia:6737 - task.ExecutionTimeout = 6 * time.Hour - task.IoTimeout = 6 * time.Hour + timeout(task, 6*time.Hour) } b.MustAddTask(name, task) @@ -972,10 +1009,10 @@ func coverage(b *specs.TasksCfgBuilder, name string, parts map[string]string, co task := kitchenTask(n, "test", "test_skia_bundled.isolate", "", swarmDimensions(parts), nil, OUTPUT_COVERAGE) task.CipdPackages = append(task.CipdPackages, pkgs...) task.Dependencies = append(task.Dependencies, compileTaskName) - task.ExecutionTimeout = 4 * time.Hour + task.Expiration = 20 * time.Hour - task.IoTimeout = 4 * time.Hour task.MaxAttempts = 1 + timeout(task, 4*time.Hour) if deps := getIsolatedCIPDDeps(parts); len(deps) > 0 { task.Dependencies = append(task.Dependencies, deps...) } @@ -988,7 +1025,7 @@ func coverage(b *specs.TasksCfgBuilder, name string, parts map[string]string, co "gs_bucket": CONFIG.GsBucketCoverage, } uploadTask := kitchenTask(uploadName, "upload_coverage_results", "swarm_recipe.isolate", SERVICE_ACCOUNT_UPLOAD_COVERAGE, linuxGceDimensions(), extraProps, OUTPUT_NONE) - uploadTask.CipdPackages = append(uploadTask.CipdPackages, CIPD_PKGS_GIT...) + usesGit(uploadTask, uploadName) uploadTask.CipdPackages = append(uploadTask.CipdPackages, CIPD_PKGS_GSUTIL...) // We need clang_linux to get access to the llvm-profdata and llvm-cov binaries // which are used to deal with the raw coverage data output by the Test step. @@ -1016,27 +1053,23 @@ func perf(b *specs.TasksCfgBuilder, name string, parts map[string]string, compil task := kitchenTask(name, recipe, isolate, "", swarmDimensions(parts), nil, OUTPUT_PERF) task.CipdPackages = append(task.CipdPackages, pkgs...) task.Dependencies = append(task.Dependencies, compileTaskName) - task.ExecutionTimeout = 4 * time.Hour task.Expiration = 20 * time.Hour - task.IoTimeout = 4 * time.Hour task.MaxAttempts = 1 + timeout(task, 4*time.Hour) if deps := getIsolatedCIPDDeps(parts); len(deps) > 0 { task.Dependencies = append(task.Dependencies, deps...) } if strings.Contains(parts["extra_config"], "Valgrind") { - task.ExecutionTimeout = 9 * time.Hour + timeout(task, 9*time.Hour) task.Expiration = 48 * time.Hour - task.IoTimeout = 9 * time.Hour task.CipdPackages = append(task.CipdPackages, b.MustGetCipdPackageFromAsset("valgrind")) task.Dimensions = append(task.Dimensions, "valgrind:1") } else if strings.Contains(parts["extra_config"], "MSAN") { - task.ExecutionTimeout = 9 * time.Hour - task.IoTimeout = 9 * time.Hour + timeout(task, 9*time.Hour) } else if parts["arch"] == "x86" && parts["configuration"] == "Debug" { // skia:6737 - task.ExecutionTimeout = 6 * time.Hour - task.IoTimeout = 6 * time.Hour + timeout(task, 6*time.Hour) } iid := internalHardwareLabel(parts) if iid != nil { @@ -1085,7 +1118,7 @@ func presubmit(b *specs.TasksCfgBuilder, name string) string { } replaceArg("-repository", "https://chromium.googlesource.com/chromium/tools/build") replaceArg("-revision", "HEAD") - task.CipdPackages = append(task.CipdPackages, CIPD_PKGS_GIT...) + usesGit(task, name) task.Dependencies = []string{} // No bundled recipes for this one. b.MustAddTask(name, task) return name diff --git a/infra/bots/recipe_modules/core/examples/full.expected/Housekeeper-Weekly-RecreateSKPs.json b/infra/bots/recipe_modules/core/examples/full.expected/Housekeeper-Weekly-RecreateSKPs.json index a2967213c3..cf2c43fcb2 100644 --- a/infra/bots/recipe_modules/core/examples/full.expected/Housekeeper-Weekly-RecreateSKPs.json +++ b/infra/bots/recipe_modules/core/examples/full.expected/Housekeeper-Weekly-RecreateSKPs.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}, {'deps_file': '.DEPS.git', 'managed': False, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}, {'deps_file': '.DEPS.git', 'managed': False, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -49,7 +49,7 @@ "--revision", "src@origin/lkcr" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -103,7 +103,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env": { "CPPFLAGS": "-DSK_ALLOW_CROSSPROCESS_PICTUREIMAGEFILTERS=1", "DEPOT_TOOLS_UPDATE": "0", diff --git a/infra/bots/recipe_modules/core/examples/full.expected/cross_repo_trybot.json b/infra/bots/recipe_modules/core/examples/full.expected/cross_repo_trybot.json index af1d2a63b8..4399b6cde2 100644 --- a/infra/bots/recipe_modules/core/examples/full.expected/cross_repo_trybot.json +++ b/infra/bots/recipe_modules/core/examples/full.expected/cross_repo_trybot.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'parent_repo', 'url': 'https://skia.googlesource.com/parent_repo.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'parent_repo', 'url': 'https://skia.googlesource.com/parent_repo.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"parent_repo\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--gerrit_repo", @@ -51,7 +51,7 @@ "--revision", "parent_repo@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" diff --git a/infra/bots/recipe_modules/core/examples/full.expected/flutter_trybot.json b/infra/bots/recipe_modules/core/examples/full.expected/flutter_trybot.json index b41ff52e47..c73455d175 100644 --- a/infra/bots/recipe_modules/core/examples/full.expected/flutter_trybot.json +++ b/infra/bots/recipe_modules/core/examples/full.expected/flutter_trybot.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]/flutter" + "[START_DIR]/cache/work/flutter" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/flutter/.gclient_entries" + "[START_DIR]/cache/work/flutter/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/flutter/.gclient_entries" + "name": "remove [START_DIR]/cache/work/flutter/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'src/flutter', 'url': 'https://github.com/flutter/engine.git'}]\ntarget_os = ['android']", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'src/flutter', 'url': 'https://github.com/flutter/engine.git'}]\ntarget_os = ['android']", "--patch_root", "src/third_party/skia", "--revision_mapping_file", "{\"got_flutter_revision\": \"src/flutter\", \"got_revision\": \"src/third_party/skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--gerrit_repo", @@ -53,7 +53,7 @@ "--revision", "src/third_party/skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter", + "cwd": "[START_DIR]/cache/work/flutter", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" diff --git a/infra/bots/recipe_modules/core/examples/full.expected/parent_revision.json b/infra/bots/recipe_modules/core/examples/full.expected/parent_revision.json index 162d5d2f2b..ffce3b2ee9 100644 --- a/infra/bots/recipe_modules/core/examples/full.expected/parent_revision.json +++ b/infra/bots/recipe_modules/core/examples/full.expected/parent_revision.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_C:\\_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_C:\\_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_C:\\_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_C:\\\\_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_C:\\_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123^" ], - "cwd": "[CUSTOM_C:\\_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" diff --git a/infra/bots/recipe_modules/core/examples/full.expected/parent_revision_trybot.json b/infra/bots/recipe_modules/core/examples/full.expected/parent_revision_trybot.json index 8be1f734d4..2a1eb4cb64 100644 --- a/infra/bots/recipe_modules/core/examples/full.expected/parent_revision_trybot.json +++ b/infra/bots/recipe_modules/core/examples/full.expected/parent_revision_trybot.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_C:\\_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_C:\\_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_C:\\_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_C:\\\\_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_C:\\_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_C:\\_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" diff --git a/infra/bots/recipe_modules/core/examples/full.expected/pdfium_trybot.json b/infra/bots/recipe_modules/core/examples/full.expected/pdfium_trybot.json index 03aed27295..fe3983f59c 100644 --- a/infra/bots/recipe_modules/core/examples/full.expected/pdfium_trybot.json +++ b/infra/bots/recipe_modules/core/examples/full.expected/pdfium_trybot.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'pdfium', 'url': 'https://pdfium.googlesource.com/pdfium.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'pdfium', 'url': 'https://pdfium.googlesource.com/pdfium.git'}]", "--patch_root", "pdfium/third_party/skia", "--revision_mapping_file", "{\"got_pdfium_revision\": \"pdfium\", \"got_revision\": \"pdfium/third_party/skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--gerrit_repo", @@ -53,7 +53,7 @@ "--revision", "pdfium/third_party/skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" diff --git a/infra/bots/recipe_modules/core/examples/full.expected/test.json b/infra/bots/recipe_modules/core/examples/full.expected/test.json index 82df2360ab..ef0d4965bc 100644 --- a/infra/bots/recipe_modules/core/examples/full.expected/test.json +++ b/infra/bots/recipe_modules/core/examples/full.expected/test.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_C:\\_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_C:\\_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_C:\\_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_C:\\\\_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_C:\\_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--gerrit_repo", @@ -51,7 +51,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_C:\\_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_API26.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_API26.json index a3ad9608e0..a69acebd09 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_API26.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_API26.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/android_ndk_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/android_ndk_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Android_API26" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Android_API26" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Android_API26/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Android_API26/Release", "--args=extra_cflags=[\"-DDUMMY_ndk_version=42\"] is_debug=false ndk=\"[START_DIR]/android_ndk_linux\" ndk_api=26 target_cpu=\"arm\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Android_API26" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Android_API26" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Android_API26/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Android_API26/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Android_API26" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Android_API26" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_ASAN.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_ASAN.json index 07347cc401..05ce497a28 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_ASAN.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_ASAN.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/android_ndk_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/android_ndk_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Android_ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Android_ASAN" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Android_ASAN/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Android_ASAN/Release", "--args=extra_cflags=[\"-DDUMMY_ndk_version=42\"] is_debug=false ndk=\"[START_DIR]/android_ndk_linux\" ndk_api=21 sanitize=\"ASAN\" target_cpu=\"arm\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Android_ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Android_ASAN" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Android_ASAN/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Android_ASAN/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Android_ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Android_ASAN" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Chromebook_GLES.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Chromebook_GLES.json index 6e2e365730..10a00fc0af 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Chromebook_GLES.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Chromebook_GLES.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,33 +17,33 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "LD_LIBRARY_PATH": "[START_DIR]/armhf_sysroot/lib", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES/Release", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_asmflags=[\"--target=armv7a-linux-gnueabihf\", \"--sysroot=[START_DIR]/armhf_sysroot\", \"-march=armv7-a\", \"-mfpu=neon\", \"-mthumb\"] extra_cflags=[\"--target=armv7a-linux-gnueabihf\", \"--sysroot=[START_DIR]/armhf_sysroot\", \"-I[START_DIR]/chromebook_arm_gles/include\", \"-I[START_DIR]/armhf_sysroot/include\", \"-I[START_DIR]/armhf_sysroot/include/c++/4.8.4\", \"-I[START_DIR]/armhf_sysroot/include/c++/4.8.4/arm-linux-gnueabihf\", \"-DMESA_EGL_NO_X11_HEADERS\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"--target=armv7a-linux-gnueabihf\", \"--sysroot=[START_DIR]/armhf_sysroot\", \"-B[START_DIR]/armhf_sysroot/bin\", \"-B[START_DIR]/armhf_sysroot/gcc-cross\", \"-L[START_DIR]/armhf_sysroot/gcc-cross\", \"-L[START_DIR]/armhf_sysroot/lib\", \"-L[START_DIR]/chromebook_arm_gles/lib\"] is_debug=false skia_use_egl=true skia_use_fontconfig=false skia_use_system_freetype2=false target_cpu=\"arm\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "LD_LIBRARY_PATH": "[START_DIR]/armhf_sysroot/lib", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" }, "name": "gn gen" }, @@ -53,17 +53,17 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES/Release", "nanobench", "dm" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "LD_LIBRARY_PATH": "[START_DIR]/armhf_sysroot/lib", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm64-Release-Android_ASAN.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm64-Release-Android_ASAN.json index 4f28854507..646dd1bee0 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm64-Release-Android_ASAN.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm64-Release-Android_ASAN.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/android_ndk_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/android_ndk_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN/Release", "--args=extra_cflags=[\"-DDUMMY_ndk_version=42\"] is_debug=false ndk=\"[START_DIR]/android_ndk_linux\" sanitize=\"ASAN\" target_cpu=\"arm64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-universal-devrel-Android_SKQP.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-universal-devrel-Android_SKQP.json index 6dee9daf05..30d12b2a50 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-universal-devrel-Android_SKQP.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-universal-devrel-Android_SKQP.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/android_ndk_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/android_ndk_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,14 +17,14 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "devrel", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" }, "infra_step": true, "name": "fetch-gn" @@ -40,7 +40,7 @@ "GOPATH": "[START_DIR]/gopath", "GOROOT": "[START_DIR]/go/go", "PATH": "[START_DIR]/go/go/bin:[START_DIR]/gopath:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" }, "name": "go version" }, @@ -55,7 +55,7 @@ "GOPATH": "[START_DIR]/gopath", "GOROOT": "[START_DIR]/go/go", "PATH": "[START_DIR]/go/go/bin:[START_DIR]/gopath:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" }, "name": "env go version" }, @@ -73,7 +73,7 @@ "GOPATH": "[START_DIR]/gopath", "GOROOT": "[START_DIR]/go/go", "PATH": "[START_DIR]/go/go/bin:[START_DIR]/gopath:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" }, "name": "update go pkgs" }, @@ -82,8 +82,8 @@ "go", "build", "-o", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP/devrel/run_testlab", - "[CUSTOM_/_B_WORK]/skia/infra/cts/run_testlab.go" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP/devrel/run_testlab", + "[START_DIR]/cache/work/skia/infra/cts/run_testlab.go" ], "env": { "BUILDTYPE": "devrel", @@ -91,23 +91,23 @@ "GOPATH": "[START_DIR]/gopath", "GOROOT": "[START_DIR]/go/go", "PATH": "[START_DIR]/go/go/bin:[START_DIR]/gopath:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" }, "name": "build firebase runner" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/tools/skqp/make_universal_apk" + "[START_DIR]/cache/work/skia/tools/skqp/make_universal_apk" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "ANDROID_HOME": "[START_DIR]/android_sdk_linux/android-sdk", "ANDROID_NDK": "[START_DIR]/android_ndk_linux", - "APK_OUTPUT_DIR": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP/devrel", + "APK_OUTPUT_DIR": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP/devrel", "BUILDTYPE": "devrel", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-universal-devrel-Android_SKQP" }, "name": "make_universal" }, @@ -119,7 +119,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/cts/whitelist_devices.json", + "[START_DIR]/cache/work/skia/infra/cts/whitelist_devices.json", "[START_DIR]/[SWARM_OUT_DIR]" ], "infra_step": true, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES.json index da96284755..a078e34384 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES/Debug", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_asmflags=[] extra_cflags=[\"-DMESA_EGL_NO_X11_HEADERS\", \"-I[START_DIR]/chromebook_x86_64_gles/include\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-L[START_DIR]/chromebook_x86_64_gles/lib\", \"-static-libstdc++\", \"-static-libgcc\", \"-fuse-ld=lld\"] skia_use_egl=true skia_use_fontconfig=false skia_use_system_freetype2=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES" }, "name": "gn gen" }, @@ -51,16 +51,16 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES/Debug", "nanobench", "dm" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41.json index e9455576d1..bdb433f2de 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41/Debug", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-DSK_CPU_LIMIT_SSE41\", \"-DSKCMS_PORTABLE\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\"] target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41/Debug" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json index 435eae2194..fd55e9c8fe 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE/Debug", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-DSK_USE_DISCARDABLE_SCALEDIMAGECACHE\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\"] target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE/Debug" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Fast.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Fast.json index 98475cfaf4..787491ef69 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Fast.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Fast.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Fast/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast/Release", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-march=native\", \"-fomit-frame-pointer\", \"-O3\", \"-ffp-contract=off\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\"] is_debug=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Fast/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Mini.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Mini.json index f61cc7e46a..6000c10ee0 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Mini.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Mini.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Mini/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Mini/Release", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\"] is_component_build=true is_debug=false is_official_build=true skia_enable_effects=false skia_enable_gpu=true skia_enable_pdf=false skia_use_expat=false skia_use_libjpeg_turbo=false skia_use_libpng=false skia_use_libwebp=false skia_use_zlib=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Mini/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Mini/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-SwiftShader.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-SwiftShader.json index a7df278e86..70ae6b8122 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-SwiftShader.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-SwiftShader.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -23,7 +23,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out" ], "infra_step": true, "name": "makedirs swiftshader_out" @@ -31,17 +31,17 @@ { "cmd": [ "cmake", - "[CUSTOM_/_B_WORK]/skia/third_party/externals/swiftshader", + "[START_DIR]/cache/work/skia/third_party/externals/swiftshader", "-GNinja" ], - "cwd": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out", + "cwd": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out", "env": { "BUILDTYPE": "Release", "CC": "[START_DIR]/clang_linux/bin/clang", "CHROME_HEADLESS": "1", "CXX": "[START_DIR]/clang_linux/bin/clang++", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]:[START_DIR]/cmake_linux/bin", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader" }, "name": "swiftshader cmake" }, @@ -49,18 +49,18 @@ "cmd": [ "ninja", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out", "libEGL.so", "libGLESv2.so" ], - "cwd": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out", + "cwd": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out", "env": { "BUILDTYPE": "Release", "CC": "[START_DIR]/clang_linux/bin/clang", "CHROME_HEADLESS": "1", "CXX": "[START_DIR]/clang_linux/bin/clang++", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]:[START_DIR]/cmake_linux/bin", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader" }, "name": "swiftshader ninja" }, @@ -68,31 +68,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/Release", - "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-DGR_EGL_TRY_GLES3_THEN_GLES2\", \"-I[CUSTOM_/_B_WORK]/skia/third_party/externals/swiftshader/include\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out\"] is_debug=false skia_use_egl=true target_cpu=\"x86_64\"" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/Release", + "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-DGR_EGL_TRY_GLES3_THEN_GLES2\", \"-I[START_DIR]/cache/work/skia/third_party/externals/swiftshader/include\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out\"] is_debug=false skia_use_egl=true target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader" }, "name": "gn gen" }, @@ -102,14 +102,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader" }, "name": "ninja" }, @@ -118,7 +118,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-SwiftShader/swiftshader_out", "[START_DIR]/[SWARM_OUT_DIR]/out/swiftshader_out" ], "infra_step": true, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json index c89c2b2493..6a24e90bc4 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan/Release", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\"] is_debug=false skia_enable_vulkan_debug_layers=false skia_vulkan_sdk=\"[START_DIR]/linux_vulkan_sdk\" target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-EMCC-wasm-Release.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-EMCC-wasm-Release.json index caf77dcae5..863f7ea7b1 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-EMCC-wasm-Release.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-EMCC-wasm-Release.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/emscripten_sdk/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/emscripten_sdk/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-EMCC-wasm-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-EMCC-wasm-Release" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-EMCC-wasm-Release/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-EMCC-wasm-Release/Release", "--args=cc=\"[START_DIR]/emscripten_sdk/emscripten/incoming/emcc\" cxx=\"[START_DIR]/emscripten_sdk/emscripten/incoming/em++\" extra_cflags=[\"-Wno-unknown-warning-option\", \"-DDUMMY_emscripten_sdk_version=42\"] is_debug=false skia_enable_gpu=false skia_use_dng_sdk=false skia_use_fontconfig=false skia_use_freetype=false skia_use_icu=false target_cpu=\"wasm\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "[START_DIR]/emscripten_sdk/clang/fastcomp/build_incoming_64/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-EMCC-wasm-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-EMCC-wasm-Release" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-EMCC-wasm-Release/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-EMCC-wasm-Release/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "[START_DIR]/emscripten_sdk/clang/fastcomp/build_incoming_64/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-EMCC-wasm-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-EMCC-wasm-Release" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-loongson3a-Release.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-loongson3a-Release.json index 92099f6c9b..e6b90c0cfd 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-loongson3a-Release.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-loongson3a-Release.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/mips64el_toolchain_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/mips64el_toolchain_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,32 +17,32 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-loongson3a-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-loongson3a-Release" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-loongson3a-Release/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-loongson3a-Release/Release", "--args=cc=\"[START_DIR]/mips64el_toolchain_linux/bin/mips64el-linux-gnuabi64-gcc-7\" cxx=\"[START_DIR]/mips64el_toolchain_linux/bin/mips64el-linux-gnuabi64-g++-7\" extra_cflags=[\"-Wno-format-truncation\", \"-Wno-uninitialized\", \"-DDUMMY_mips64el_toolchain_linux_version=42\", \"-Wno-strict-overflow\"] extra_ldflags=[\"-L[START_DIR]/mips64el_toolchain_linux/mips64el-linux-gnuabi64/lib\"] is_debug=false skia_enable_gpu=false skia_use_fontconfig=false skia_use_system_freetype2=false target_cpu=\"loongson3a\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "LD_LIBRARY_PATH": "[START_DIR]/mips64el_toolchain_linux/lib/x86_64-linux-gnu/", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-loongson3a-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-loongson3a-Release" }, "name": "gn gen" }, @@ -52,15 +52,15 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-loongson3a-Release/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-loongson3a-Release/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "LD_LIBRARY_PATH": "[START_DIR]/mips64el_toolchain_linux/lib/x86_64-linux-gnu/", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-loongson3a-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-loongson3a-Release" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Debug-EmbededResouces.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Debug-EmbededResouces.json index 206b359afe..5d5fa6ba0e 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Debug-EmbededResouces.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Debug-EmbededResouces.json @@ -3,31 +3,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Debug-EmbededResouces" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Debug-EmbededResouces" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Debug-EmbededResouces/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Debug-EmbededResouces/Debug", "--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"] skia_embed_resoucres=true target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Debug-EmbededResouces" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Debug-EmbededResouces" }, "name": "gn gen" }, @@ -37,14 +37,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Debug-EmbededResouces/Debug" + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Debug-EmbededResouces/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Debug-EmbededResouces" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Debug-EmbededResouces" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-ANGLE.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-ANGLE.json index 9257b13d44..77a47b269f 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-ANGLE.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-ANGLE.json @@ -3,31 +3,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE/Release", "--args=cc=\"gcc\" cxx=\"g++\" is_debug=false skia_use_angle=true target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" }, "name": "gn gen" }, @@ -37,14 +37,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json index df0b1af034..13401a8ac8 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json @@ -6,7 +6,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "env": { "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]" }, @@ -20,9 +20,9 @@ "--json-output", "/path/to/tmp/json", "rmtree", - "[CUSTOM_/_B_WORK]/flutter/src/out/android_release" + "[START_DIR]/cache/work/flutter/src/out/android_release" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "infra_step": true, "name": "rmtree android_release" }, @@ -32,12 +32,12 @@ "--runtime-mode=release", "--android" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" + "SKIA_OUT": "[START_DIR]/cache/work/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" }, "name": "gn_gen" }, @@ -48,12 +48,12 @@ "out/android_release", "-j100" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" + "SKIA_OUT": "[START_DIR]/cache/work/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" }, "name": "build_flutter" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-NoGPU.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-NoGPU.json index 48969fb3cf..6188af0c8b 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-NoGPU.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-NoGPU.json @@ -3,31 +3,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-NoGPU" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-NoGPU" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-NoGPU/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-NoGPU/Release", "--args=cc=\"gcc\" cxx=\"g++\" is_debug=false skia_enable_gpu=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-NoGPU" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-NoGPU" }, "name": "gn gen" }, @@ -37,14 +37,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-NoGPU/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-NoGPU/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-NoGPU" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-NoGPU" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json index 9c31d772cc..0df8515dda 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json @@ -6,7 +6,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]" @@ -19,13 +19,13 @@ "build/linux/sysroot_scripts/install-sysroot.py", "--arch=amd64" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" }, "name": "sysroot" }, @@ -36,14 +36,14 @@ "out/skia", "--args=pdf_is_standalone=true clang_use_chrome_plugins=false is_component_build=false is_debug=false pdf_use_skia=true" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "CHROMIUM_BUILDTOOLS_PATH": "[CUSTOM_/_B_WORK]/pdfium/buildtools", + "CHROMIUM_BUILDTOOLS_PATH": "[START_DIR]/cache/work/pdfium/buildtools", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" }, "name": "gn_gen" }, @@ -54,14 +54,14 @@ "out/skia", "-j100" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "CHROMIUM_BUILDTOOLS_PATH": "[CUSTOM_/_B_WORK]/pdfium/buildtools", + "CHROMIUM_BUILDTOOLS_PATH": "[START_DIR]/cache/work/pdfium/buildtools", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" }, "name": "build_pdfium" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths.json index 2c0f40ff7e..b8bedc2f26 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths.json @@ -6,7 +6,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]" @@ -19,13 +19,13 @@ "build/linux/sysroot_scripts/install-sysroot.py", "--arch=amd64" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" }, "name": "sysroot" }, @@ -36,14 +36,14 @@ "out/skia", "--args=pdf_is_standalone=true clang_use_chrome_plugins=false is_component_build=false is_debug=false pdf_use_skia_paths=true" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "CHROMIUM_BUILDTOOLS_PATH": "[CUSTOM_/_B_WORK]/pdfium/buildtools", + "CHROMIUM_BUILDTOOLS_PATH": "[START_DIR]/cache/work/pdfium/buildtools", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" }, "name": "gn_gen" }, @@ -54,14 +54,14 @@ "out/skia", "-j100" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "CHROMIUM_BUILDTOOLS_PATH": "[CUSTOM_/_B_WORK]/pdfium/buildtools", + "CHROMIUM_BUILDTOOLS_PATH": "[START_DIR]/cache/work/pdfium/buildtools", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" }, "name": "build_pdfium" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Shared.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Shared.json index d34dc8701e..add87e5cef 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Shared.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Shared.json @@ -3,31 +3,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-Shared/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-Shared/Release", "--args=cc=\"gcc\" cxx=\"g++\" is_component_build=true is_debug=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" }, "name": "gn gen" }, @@ -37,14 +37,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-Shared/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-Shared/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-arm64-Debug-Android_Vulkan.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-arm64-Debug-Android_Vulkan.json index 846634c05d..c7b06d6c25 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-arm64-Debug-Android_Vulkan.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-arm64-Debug-Android_Vulkan.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/android_ndk_darwin/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/android_ndk_darwin/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-Android_Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-Android_Vulkan" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-Android_Vulkan/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-Android_Vulkan/Debug", "--args=extra_cflags=[\"-O1\", \"-DDUMMY_ndk_version=42\"] ndk=\"[START_DIR]/android_ndk_darwin\" ndk_api=24 skia_enable_vulkan_debug_layers=false target_cpu=\"arm64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-Android_Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-Android_Vulkan" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-Android_Vulkan/Debug" + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-Android_Vulkan/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-Android_Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-Android_Vulkan" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-arm64-Debug-iOS.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-arm64-Debug-iOS.json index a75f13c717..30d564fa23 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-arm64-Debug-iOS.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-arm64-Debug-iOS.json @@ -3,31 +3,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-iOS" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-iOS" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-iOS/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-iOS/Debug", "--args=cc=\"clang\" cxx=\"clang++\" extra_cflags=[\"-O1\"] skia_ios_identity=\".*GS9WA.*\" skia_ios_profile=\"Upstream Testing Provisioning Profile\" target_cpu=\"arm64\" target_os=\"ios\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-iOS" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-iOS" }, "name": "gn gen" }, @@ -37,14 +37,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-iOS/Debug" + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-iOS/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-iOS" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-iOS" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json index 6a1b1f600c..8c7a6faa76 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json @@ -3,11 +3,11 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/tools/build_command_buffer.py", + "[START_DIR]/cache/work/skia/tools/build_command_buffer.py", "--chrome-dir", - "[CUSTOM_/_B_WORK]", + "[START_DIR]/cache/work", "--output-dir", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug", "--no-sync", "--no-hooks", "--make-output-dir" @@ -16,7 +16,7 @@ "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" }, "name": "build command_buffer" }, @@ -24,31 +24,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug", "--args=cc=\"clang\" cxx=\"clang++\" extra_cflags=[\"-O1\"] target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" }, "name": "gn gen" }, @@ -58,14 +58,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug" + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-x86_64-Debug-Metal.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-x86_64-Debug-Metal.json index 4333e95cc9..783221a11e 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-x86_64-Debug-Metal.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-x86_64-Debug-Metal.json @@ -3,31 +3,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-Metal" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-Metal" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-Metal/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-Metal/Debug", "--args=cc=\"clang\" cxx=\"clang++\" extra_cflags=[\"-O1\"] skia_use_metal=true target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-Metal" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-Metal" }, "name": "gn gen" }, @@ -37,14 +37,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-Metal/Debug" + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-Metal/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-Metal" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-Metal" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-arm64-Release-Android.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-arm64-Release-Android.json index 7c6eb71db0..383ad76335 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-arm64-Release-Android.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-arm64-Release-Android.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]/skia/infra/bots/assets/android_ndk_windows/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/android_ndk_windows/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-arm64-Release-Android" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-arm64-Release-Android" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]/skia/bin/gn.exe", + "[START_DIR]/cache/work/skia/bin/gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-arm64-Release-Android/Release", + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-arm64-Release-Android/Release", "--args=extra_cflags=[\"-DDUMMY_ndk_version=42\"] is_debug=false ndk=\"[START_DIR]/n\" target_cpu=\"arm64\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-arm64-Release-Android" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-arm64-Release-Android" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-arm64-Release-Android/Release" + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-arm64-Release-Android/Release" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-arm64-Release-Android" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-arm64-Release-Android" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86-Debug-Exceptions.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86-Debug-Exceptions.json index 822c2738c3..307d949e6c 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86-Debug-Exceptions.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86-Debug-Exceptions.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]/skia/infra/bots/assets/clang_win/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_win/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86-Debug-Exceptions" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86-Debug-Exceptions" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]/skia/bin/gn.exe", + "[START_DIR]/cache/work/skia/bin/gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86-Debug-Exceptions/Debug", + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86-Debug-Exceptions/Debug", "--args=cc=\"clang\" clang_win=\"[START_DIR]/clang_win\" cxx=\"clang++\" extra_cflags=[\"-O1\", \"/EHsc\", \"-DDUMMY_clang_win_version=42\"] target_cpu=\"x86\" win_sdk=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/win_sdk\" win_vc=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/VC\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86-Debug-Exceptions" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86-Debug-Exceptions" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86-Debug-Exceptions/Debug" + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86-Debug-Exceptions/Debug" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86-Debug-Exceptions" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86-Debug-Exceptions" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Debug-GDI.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Debug-GDI.json index 97e14930b6..ab166a7201 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Debug-GDI.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Debug-GDI.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]/skia/infra/bots/assets/clang_win/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_win/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Debug-GDI" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Debug-GDI" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]/skia/bin/gn.exe", + "[START_DIR]/cache/work/skia/bin/gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Debug-GDI/Debug_x64", + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Debug-GDI/Debug_x64", "--args=cc=\"clang\" clang_win=\"[START_DIR]/clang_win\" cxx=\"clang++\" extra_cflags=[\"-O1\", \"-DDUMMY_clang_win_version=42\"] target_cpu=\"x86_64\" win_sdk=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/win_sdk\" win_vc=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/VC\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Debug-GDI" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Debug-GDI" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Debug-GDI/Debug_x64" + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Debug-GDI/Debug_x64" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Debug-GDI" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Debug-GDI" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Release-Vulkan.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Release-Vulkan.json index a844cff802..fd151d72de 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Release-Vulkan.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Release-Vulkan.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]/skia/infra/bots/assets/clang_win/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_win/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]/skia/bin/gn.exe", + "[START_DIR]/cache/work/skia/bin/gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64", + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64", "--args=cc=\"clang\" clang_win=\"[START_DIR]/clang_win\" cxx=\"clang++\" extra_cflags=[\"-DDUMMY_clang_win_version=42\"] is_debug=false skia_enable_vulkan_debug_layers=false skia_vulkan_sdk=\"[START_DIR]/win_vulkan_sdk\" target_cpu=\"x86_64\" win_sdk=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/win_sdk\" win_vc=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/VC\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64" + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Release.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Release.json index b21990314d..2e5d55d5b2 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Release.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Release.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]/skia/infra/bots/assets/clang_win/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_win/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,31 +17,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]/skia/bin/gn.exe", + "[START_DIR]/cache/work/skia/bin/gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release/Release_x64", + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release/Release_x64", "--args=cc=\"clang\" clang_win=\"[START_DIR]/clang_win\" cxx=\"clang++\" extra_cflags=[\"-DDUMMY_clang_win_version=42\"] is_debug=false target_cpu=\"x86_64\" win_sdk=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/win_sdk\" win_vc=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/VC\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release" }, "name": "gn gen" }, @@ -51,14 +51,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release/Release_x64" + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release/Release_x64" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release" }, "name": "ninja" }, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json index 964fe89f6c..a6975b514e 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json @@ -3,9 +3,9 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -19,9 +19,9 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-clang-format" + "[START_DIR]/cache/work/skia/bin/fetch-clang-format" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -33,16 +33,16 @@ }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/build/out/Release", "--args=is_debug=false skia_compile_processors=true skia_generate_workarounds=true" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "PATH": "[CUSTOM_/_B_WORK]/skia/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", + "PATH": "[START_DIR]/cache/work/skia/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", "SKIA_OUT": "[START_DIR]/build/out" }, "name": "gn gen" @@ -55,11 +55,11 @@ "-C", "[START_DIR]/build/out/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "PATH": "[CUSTOM_/_B_WORK]/skia/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", + "PATH": "[START_DIR]/cache/work/skia/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", "SKIA_OUT": "[START_DIR]/build/out" }, "name": "ninja" @@ -128,7 +128,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/skp/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/skp/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -156,7 +156,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/skimage/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/skimage/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -184,7 +184,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/svg/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/svg/VERSION", "/path/to/tmp/" ], "infra_step": true, diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Ubuntu14-Clang-GCE-CPU-AVX2-x86_64-Release-All-CT_BENCH_1k_SKPs.json b/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Ubuntu14-Clang-GCE-CPU-AVX2-x86_64-Release-All-CT_BENCH_1k_SKPs.json index 84aca5d680..87c71d95f5 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Ubuntu14-Clang-GCE-CPU-AVX2-x86_64-Release-All-CT_BENCH_1k_SKPs.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Ubuntu14-Clang-GCE-CPU-AVX2-x86_64-Release-All-CT_BENCH_1k_SKPs.json @@ -7,7 +7,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -17,9 +17,9 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -31,12 +31,12 @@ }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/build/out/Release", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-static-libstdc++\", \"-static-libgcc\"] is_debug=false" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -53,7 +53,7 @@ "-C", "[START_DIR]/build/out/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -126,7 +126,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/skp/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/skp/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -154,7 +154,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/skimage/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/skimage/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -182,7 +182,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/svg/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/svg/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -212,7 +212,7 @@ "[START_DIR]/build/out/Release/nanobench", "--some-flag" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipe_modules/run/examples/full.expected/test.json b/infra/bots/recipe_modules/run/examples/full.expected/test.json index e183a110cc..0d4e279414 100644 --- a/infra/bots/recipe_modules/run/examples/full.expected/test.json +++ b/infra/bots/recipe_modules/run/examples/full.expected/test.json @@ -7,7 +7,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "fail", "~followup_annotations": [ @@ -23,7 +23,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "fail again", "~followup_annotations": [ @@ -40,7 +40,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "do a thing" }, @@ -53,7 +53,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "run 0" }, @@ -106,7 +106,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]/skia/infra/bots/assets/my_asset/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/my_asset/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -120,7 +120,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "mydir:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "env" }, @@ -170,7 +170,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "retry fail", "~followup_annotations": [ @@ -187,7 +187,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "between_attempts #1" }, @@ -199,7 +199,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "retry fail (attempt 2)", "~followup_annotations": [ @@ -216,7 +216,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "between_attempts #2" }, @@ -228,7 +228,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "retry fail (attempt 3)", "~followup_annotations": [ @@ -245,7 +245,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "between_attempts #3" }, @@ -257,7 +257,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "retry fail (attempt 4)", "~followup_annotations": [ @@ -274,7 +274,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "between_attempts #4" }, @@ -286,7 +286,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "retry fail (attempt 5)", "~followup_annotations": [ @@ -302,7 +302,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "retry success", "~followup_annotations": [ @@ -319,7 +319,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "between_attempts #1 (2)" }, @@ -331,7 +331,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "retry success (attempt 2)", "~followup_annotations": [ @@ -348,7 +348,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "between_attempts #2 (2)" }, @@ -360,7 +360,7 @@ "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "retry success (attempt 3)" }, diff --git a/infra/bots/recipe_modules/vars/api.py b/infra/bots/recipe_modules/vars/api.py index 26bde8c9d8..29842c61d8 100644 --- a/infra/bots/recipe_modules/vars/api.py +++ b/infra/bots/recipe_modules/vars/api.py @@ -15,11 +15,8 @@ CONFIG_RELEASE = 'Release' class SkiaVarsApi(recipe_api.RecipeApi): - def make_path(self, *path): - """Return a Path object for the given path.""" - key = 'custom_%s' % '_'.join(path) - self.m.path.c.base_paths[key] = tuple(path) - return self.m.path[key] + override_checkout_root = None + override_gclient_cache = None def setup(self): """Prepare the variables.""" @@ -59,14 +56,13 @@ class SkiaVarsApi(recipe_api.RecipeApi): if 'Coverage' in self.builder_name and 'Upload' in self.builder_name: self.persistent_checkout = True + self.cache_dir = self.slave_dir.join('cache') if self.persistent_checkout: - if 'Win' in self.builder_name: - self.checkout_root = self.make_path('C:\\', 'b', 'work') - self.gclient_cache = self.make_path('C:\\', 'b', 'cache') - else: - self.checkout_root = self.make_path('/', 'b', 'work') - self.gclient_cache = self.make_path('/', 'b', 'cache') - + self.checkout_root = self.cache_dir.join('work') + self.gclient_cache = self.cache_dir.join('git') + if self.override_checkout_root: + self.checkout_root = self.override_checkout_root + self.gclient_cache = self.override_gclient_cache # got_revision is filled in after checkout steps. self.got_revision = None else: diff --git a/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Override.json b/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Override.json new file mode 100644 index 0000000000..4594f9e6b9 --- /dev/null +++ b/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Override.json @@ -0,0 +1,35 @@ +[ + { + "cmd": [ + "python", + "-u", + "import os\nprint os.environ.get('SWARMING_BOT_ID', '')\n" + ], + "name": "get swarming bot id", + "stdout": "/path/to/tmp/", + "~followup_annotations": [ + "@@@STEP_LOG_LINE@python.inline@import os@@@", + "@@@STEP_LOG_LINE@python.inline@print os.environ.get('SWARMING_BOT_ID', '')@@@", + "@@@STEP_LOG_END@python.inline@@@" + ] + }, + { + "cmd": [ + "python", + "-u", + "import os\nprint os.environ.get('SWARMING_TASK_ID', '')\n" + ], + "name": "get swarming task id", + "stdout": "/path/to/tmp/", + "~followup_annotations": [ + "@@@STEP_LOG_LINE@python.inline@import os@@@", + "@@@STEP_LOG_LINE@python.inline@print os.environ.get('SWARMING_TASK_ID', '')@@@", + "@@@STEP_LOG_END@python.inline@@@" + ] + }, + { + "name": "$result", + "recipe_result": null, + "status_code": 0 + } +]
\ No newline at end of file diff --git a/infra/bots/recipe_modules/vars/examples/full.py b/infra/bots/recipe_modules/vars/examples/full.py index 5fca9df48d..9e614c8a31 100644 --- a/infra/bots/recipe_modules/vars/examples/full.py +++ b/infra/bots/recipe_modules/vars/examples/full.py @@ -4,12 +4,16 @@ DEPS = [ + 'recipe_engine/path', 'recipe_engine/properties', 'vars', ] def RunSteps(api): + if 'Override' in api.properties['buildername']: + api.vars.override_checkout_root = api.path['start_dir'] + api.vars.override_gclient_cache = api.path['start_dir'] api.vars.setup() info = [ api.vars.upload_dm_results, @@ -23,6 +27,7 @@ def RunSteps(api): TEST_BUILDERS = [ 'Build-Debian9-Clang-x86_64-Release-NoDEPS', + 'Build-Debian9-Clang-x86_64-Release-Override', 'Build-Debian9-Clang-x86_64-Release-ParentRevision', 'Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD', 'Build-Debian9-GCC-x86_64-Release-Flutter_Android', diff --git a/infra/bots/recipes/bookmaker.expected/nightly_bookmaker.json b/infra/bots/recipes/bookmaker.expected/nightly_bookmaker.json index 863a924f3f..eead16ebe1 100644 --- a/infra/bots/recipes/bookmaker.expected/nightly_bookmaker.json +++ b/infra/bots/recipes/bookmaker.expected/nightly_bookmaker.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -149,7 +149,7 @@ "-e", "[START_DIR]/fiddle.json" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -170,7 +170,7 @@ "--logtostderr", "--force" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -192,7 +192,7 @@ "[START_DIR]/fiddleout.json", "/path/to/tmp/" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "GOPATH": "[START_DIR]/gopath", "GOROOT": "[START_DIR]/go/go", @@ -206,7 +206,7 @@ "cat", "[START_DIR]/fiddleout.json" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -220,13 +220,13 @@ { "cmd": [ "python", - "[CUSTOM_/_B_WORK]/skia/infra/bots/upload_md.py", + "[START_DIR]/cache/work/skia/infra/bots/upload_md.py", "--bookmaker_binary", "[START_DIR]/build/out/Release/bookmaker", "--fiddlecli_output", "[START_DIR]/fiddleout.json" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/bookmaker.expected/nightly_failed_extract_fiddles.json b/infra/bots/recipes/bookmaker.expected/nightly_failed_extract_fiddles.json index e5f591f9bd..9ffbb61ade 100644 --- a/infra/bots/recipes/bookmaker.expected/nightly_failed_extract_fiddles.json +++ b/infra/bots/recipes/bookmaker.expected/nightly_failed_extract_fiddles.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -149,7 +149,7 @@ "-e", "[START_DIR]/fiddle.json" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddlecli.json b/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddlecli.json index db15d5b9f5..2774b50b61 100644 --- a/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddlecli.json +++ b/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddlecli.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -149,7 +149,7 @@ "-e", "[START_DIR]/fiddle.json" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -170,7 +170,7 @@ "--logtostderr", "--force" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddles.json b/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddles.json index f2ea70cb9f..9fab0f5ddc 100644 --- a/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddles.json +++ b/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddles.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -149,7 +149,7 @@ "-e", "[START_DIR]/fiddle.json" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -170,7 +170,7 @@ "--logtostderr", "--force" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -192,7 +192,7 @@ "[START_DIR]/fiddleout.json", "/path/to/tmp/" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "GOPATH": "[START_DIR]/gopath", "GOROOT": "[START_DIR]/go/go", @@ -206,7 +206,7 @@ "cat", "[START_DIR]/fiddleout.json" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/bookmaker.expected/nightly_failed_upload.json b/infra/bots/recipes/bookmaker.expected/nightly_failed_upload.json index 3d2966381a..60ccebe788 100644 --- a/infra/bots/recipes/bookmaker.expected/nightly_failed_upload.json +++ b/infra/bots/recipes/bookmaker.expected/nightly_failed_upload.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -149,7 +149,7 @@ "-e", "[START_DIR]/fiddle.json" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -170,7 +170,7 @@ "--logtostderr", "--force" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -184,13 +184,13 @@ { "cmd": [ "python", - "[CUSTOM_/_B_WORK]/skia/infra/bots/upload_md.py", + "[START_DIR]/cache/work/skia/infra/bots/upload_md.py", "--bookmaker_binary", "[START_DIR]/build/out/Release/bookmaker", "--fiddlecli_output", "[START_DIR]/fiddleout.json" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/bookmaker.expected/percommit_bookmaker.json b/infra/bots/recipes/bookmaker.expected/percommit_bookmaker.json index 4294790c4c..3a0e4aa58e 100644 --- a/infra/bots/recipes/bookmaker.expected/percommit_bookmaker.json +++ b/infra/bots/recipes/bookmaker.expected/percommit_bookmaker.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -148,7 +148,7 @@ "docs/status.json", "-x" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/bookmaker.expected/percommit_failed_validation.json b/infra/bots/recipes/bookmaker.expected/percommit_failed_validation.json index b91cf84486..f15a9ef22b 100644 --- a/infra/bots/recipes/bookmaker.expected/percommit_failed_validation.json +++ b/infra/bots/recipes/bookmaker.expected/percommit_failed_validation.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -148,7 +148,7 @@ "docs/status.json", "-x" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/check_generated_files.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json b/infra/bots/recipes/check_generated_files.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json index 7c9fe21dab..af5f08e271 100644 --- a/infra/bots/recipes/check_generated_files.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json +++ b/infra/bots/recipes/check_generated_files.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -114,7 +114,7 @@ "diff", "--no-ext-diff" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -128,9 +128,9 @@ "cmd": [ "python", "-u", - "import os\nimport subprocess\n\nfor r, d, files in os.walk('[CUSTOM_/_B_WORK]/skia'):\n for f in files:\n if f.endswith('.fp'):\n path = os.path.join(r, f)\n print 'touch %s' % path\n subprocess.check_call(['touch', path])\n" + "import os\nimport subprocess\n\nfor r, d, files in os.walk('[START_DIR]/cache/work/skia'):\n for f in files:\n if f.endswith('.fp'):\n path = os.path.join(r, f)\n print 'touch %s' % path\n subprocess.check_call(['touch', path])\n" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -142,7 +142,7 @@ "@@@STEP_LOG_LINE@python.inline@import os@@@", "@@@STEP_LOG_LINE@python.inline@import subprocess@@@", "@@@STEP_LOG_LINE@python.inline@@@@", - "@@@STEP_LOG_LINE@python.inline@for r, d, files in os.walk('[CUSTOM_/_B_WORK]/skia'):@@@", + "@@@STEP_LOG_LINE@python.inline@for r, d, files in os.walk('[START_DIR]/cache/work/skia'):@@@", "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.fp'):@@@", "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(r, f)@@@", @@ -155,9 +155,9 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -171,9 +171,9 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-clang-format" + "[START_DIR]/cache/work/skia/bin/fetch-clang-format" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -185,16 +185,16 @@ }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", "[START_DIR]/build/out/Release", "--args=is_debug=false skia_compile_processors=true skia_generate_workarounds=true" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "PATH": "[CUSTOM_/_B_WORK]/skia/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", + "PATH": "[START_DIR]/cache/work/skia/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", "SKIA_OUT": "[START_DIR]/build/out" }, "name": "gn gen" @@ -207,11 +207,11 @@ "-C", "[START_DIR]/build/out/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "PATH": "[CUSTOM_/_B_WORK]/skia/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", + "PATH": "[START_DIR]/cache/work/skia/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", "SKIA_OUT": "[START_DIR]/build/out" }, "name": "ninja" @@ -222,7 +222,7 @@ "diff", "--no-ext-diff" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -238,7 +238,7 @@ "-u", "\ndiff1 = ''''''\n\ndiff2 = ''''''\n\nif diff1 != diff2:\n print 'Generated files have been edited!'\n exit(1)\n" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm-Release-Chromebook_GLES.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm-Release-Chromebook_GLES.json index 9c1347a57a..5420fdbdc5 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm-Release-Chromebook_GLES.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm-Release-Chromebook_GLES.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,33 +111,33 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "LD_LIBRARY_PATH": "[START_DIR]/armhf_sysroot/lib", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES/Release", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_asmflags=[\"--target=armv7a-linux-gnueabihf\", \"--sysroot=[START_DIR]/armhf_sysroot\", \"-march=armv7-a\", \"-mfpu=neon\", \"-mthumb\"] extra_cflags=[\"--target=armv7a-linux-gnueabihf\", \"--sysroot=[START_DIR]/armhf_sysroot\", \"-I[START_DIR]/chromebook_arm_gles/include\", \"-I[START_DIR]/armhf_sysroot/include\", \"-I[START_DIR]/armhf_sysroot/include/c++/4.8.4\", \"-I[START_DIR]/armhf_sysroot/include/c++/4.8.4/arm-linux-gnueabihf\", \"-DMESA_EGL_NO_X11_HEADERS\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"--target=armv7a-linux-gnueabihf\", \"--sysroot=[START_DIR]/armhf_sysroot\", \"-B[START_DIR]/armhf_sysroot/bin\", \"-B[START_DIR]/armhf_sysroot/gcc-cross\", \"-L[START_DIR]/armhf_sysroot/gcc-cross\", \"-L[START_DIR]/armhf_sysroot/lib\", \"-L[START_DIR]/chromebook_arm_gles/lib\"] is_debug=false skia_use_egl=true skia_use_fontconfig=false skia_use_system_freetype2=false target_cpu=\"arm\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "LD_LIBRARY_PATH": "[START_DIR]/armhf_sysroot/lib", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" }, "name": "gn gen" }, @@ -147,17 +147,17 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES/Release", "nanobench", "dm" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "LD_LIBRARY_PATH": "[START_DIR]/armhf_sysroot/lib", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES" }, "name": "ninja" }, @@ -166,7 +166,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm-Release-Chromebook_GLES/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android.json index d599a982a7..0b45c75184 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/android_ndk_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/android_ndk_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android/Release", "--args=extra_cflags=[\"-DDUMMY_ndk_version=42\"] is_debug=false ndk=\"[START_DIR]/android_ndk_linux\" target_cpu=\"arm64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android_ASAN.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android_ASAN.json index 0289a8c90a..d85851881a 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android_ASAN.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android_ASAN.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/android_ndk_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/android_ndk_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN/Release", "--args=extra_cflags=[\"-DDUMMY_ndk_version=42\"] is_debug=false ndk=\"[START_DIR]/android_ndk_linux\" sanitize=\"ASAN\" target_cpu=\"arm64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_ASAN/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android_Vulkan.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android_Vulkan.json index 33caf89374..cc1e4d6378 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android_Vulkan.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android_Vulkan.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/android_ndk_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/android_ndk_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan/Release", "--args=extra_cflags=[\"-DDUMMY_ndk_version=42\"] is_debug=false ndk=\"[START_DIR]/android_ndk_linux\" ndk_api=24 skia_enable_vulkan_debug_layers=false target_cpu=\"arm64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-arm64-Release-Android_Vulkan/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-ASAN.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-ASAN.json index a37663135b..c98221e26b 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-ASAN.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-ASAN.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN/Debug", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\"] sanitize=\"ASAN\" skia_enable_spirv_validation=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN/Debug" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-ASAN/Debug", "[START_DIR]/[SWARM_OUT_DIR]/out/Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-Coverage.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-Coverage.json index f39e749913..2d431b9441 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-Coverage.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-Coverage.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage/Debug", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-fprofile-instr-generate\", \"-fcoverage-mapping\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-fprofile-instr-generate\", \"-fcoverage-mapping\"] target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage/Debug" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-Coverage/Debug", "[START_DIR]/[SWARM_OUT_DIR]/out/Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-MSAN.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-MSAN.json index 2e6cc03228..c56489e070 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-MSAN.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-MSAN.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN/Debug", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-L[START_DIR]/clang_linux/msan\"] sanitize=\"MSAN\" skia_enable_gpu=false skia_use_fontconfig=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN/Debug" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-MSAN/Debug", "[START_DIR]/[SWARM_OUT_DIR]/out/Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json index 3d768982e8..0e7a0773f9 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE/Debug", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\", \"-DSK_USE_DISCARDABLE_SCALEDIMAGECACHE\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\"] target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE/Debug" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE/Debug", "[START_DIR]/[SWARM_OUT_DIR]/out/Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug.json index 4609686176..04a40898b2 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug/Debug", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-O1\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\"] target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug/Debug" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Debug/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Debug/Debug", "[START_DIR]/[SWARM_OUT_DIR]/out/Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES.json index baeb043392..9b04276e12 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES/Release", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_asmflags=[] extra_cflags=[\"-DMESA_EGL_NO_X11_HEADERS\", \"-I[START_DIR]/chromebook_x86_64_gles/include\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-L[START_DIR]/chromebook_x86_64_gles/lib\", \"-static-libstdc++\", \"-static-libgcc\", \"-fuse-ld=lld\"] is_debug=false skia_use_egl=true skia_use_fontconfig=false skia_use_system_freetype2=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES" }, "name": "gn gen" }, @@ -145,16 +145,16 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES/Release", "nanobench", "dm" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES" }, "name": "ninja" }, @@ -163,7 +163,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Fast.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Fast.json index c6401011a0..6eba4867c2 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Fast.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Fast.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Fast/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast/Release", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-march=native\", \"-fomit-frame-pointer\", \"-O3\", \"-ffp-contract=off\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\"] is_debug=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Fast/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Fast/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Fast/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Mini.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Mini.json index c68d6efc05..ec5c41e3fa 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Mini.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Mini.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Mini/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Mini/Release", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\"] is_component_build=true is_debug=false is_official_build=true skia_enable_effects=false skia_enable_gpu=true skia_enable_pdf=false skia_use_expat=false skia_use_libjpeg_turbo=false skia_use_libpng=false skia_use_libwebp=false skia_use_zlib=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Mini/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Mini/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Mini" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Mini/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Mini/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json index ef650cb57e..683e5ff031 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan/Release", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\"] is_debug=false skia_enable_vulkan_debug_layers=false skia_vulkan_sdk=\"[START_DIR]/linux_vulkan_sdk\" target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage.json b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage.json index dd557b5bc1..692ed1096f 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/clang_linux/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_linux/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage/Release", "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-B[START_DIR]/clang_linux/bin\", \"-DDUMMY_clang_linux_version=42\", \"-fprofile-instr-generate\", \"-fcoverage-mapping\"] extra_ldflags=[\"-B[START_DIR]/clang_linux/bin\", \"-fuse-ld=lld\", \"-fprofile-instr-generate\", \"-fcoverage-mapping\"] is_debug=false skia_enable_vulkan_debug_layers=false skia_vulkan_sdk=\"[START_DIR]/linux_vulkan_sdk\" target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-EMCC-wasm-Release.json b/infra/bots/recipes/compile.expected/Build-Debian9-EMCC-wasm-Release.json index 99b1593c2c..828a82a3ff 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-EMCC-wasm-Release.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-EMCC-wasm-Release.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/emscripten_sdk/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/emscripten_sdk/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-EMCC-wasm-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-EMCC-wasm-Release" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-EMCC-wasm-Release/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-EMCC-wasm-Release/Release", "--args=cc=\"[START_DIR]/emscripten_sdk/emscripten/incoming/emcc\" cxx=\"[START_DIR]/emscripten_sdk/emscripten/incoming/em++\" extra_cflags=[\"-Wno-unknown-warning-option\", \"-DDUMMY_emscripten_sdk_version=42\"] is_debug=false skia_enable_gpu=false skia_use_dng_sdk=false skia_use_fontconfig=false skia_use_freetype=false skia_use_icu=false target_cpu=\"wasm\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "[START_DIR]/emscripten_sdk/clang/fastcomp/build_incoming_64/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-EMCC-wasm-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-EMCC-wasm-Release" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-EMCC-wasm-Release/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-EMCC-wasm-Release/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "[START_DIR]/emscripten_sdk/clang/fastcomp/build_incoming_64/bin:<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-EMCC-wasm-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-EMCC-wasm-Release" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-EMCC-wasm-Release/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-EMCC-wasm-Release/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-arm-Release-Chromecast.json b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-arm-Release-Chromecast.json index 32fcb01603..e9a935e4c2 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-arm-Release-Chromecast.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-arm-Release-Chromecast.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/cast_toolchain/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/cast_toolchain/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-arm-Release-Chromecast" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-arm-Release-Chromecast" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-arm-Release-Chromecast/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-arm-Release-Chromecast/Release", "--args=ar=\"[START_DIR]/cast_toolchain/armv7a/bin/armv7a-cros-linux-gnueabi-ar\" cc=\"[START_DIR]/cast_toolchain/armv7a/bin/armv7a-cros-linux-gnueabi-gcc\" cxx=\"[START_DIR]/cast_toolchain/armv7a/bin/armv7a-cros-linux-gnueabi-g++\" extra_cflags=[\"-I[START_DIR]/chromebook_arm_gles/include\", \"-DMESA_EGL_NO_X11_HEADERS\", \"-DSK_NO_COMMAND_BUFFER\", \"-Wno-error=unused-function\", \"-g0\", \"-DDUMMY_cast_toolchain_version=42\"] extra_ldflags=[\"-static-libstdc++\", \"-static-libgcc\", \"-L[START_DIR]/cast_toolchain/armv7a/lib\"] is_debug=false skia_enable_gpu=true skia_use_egl=true skia_use_fontconfig=false skia_use_icu=false skia_use_system_freetype2=false target_cpu=\"arm\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-arm-Release-Chromecast" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-arm-Release-Chromecast" }, "name": "gn gen" }, @@ -145,16 +145,16 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-arm-Release-Chromecast/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-arm-Release-Chromecast/Release", "nanobench", "dm" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-arm-Release-Chromecast" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-arm-Release-Chromecast" }, "name": "ninja" }, @@ -163,7 +163,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-arm-Release-Chromecast/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-arm-Release-Chromecast/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86-Debug.json b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86-Debug.json index 0988830980..488a3d400d 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86-Debug.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86-Debug.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -97,31 +97,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86-Debug" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86-Debug" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86-Debug/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86-Debug/Debug", "--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"] target_cpu=\"x86\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86-Debug" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86-Debug" }, "name": "gn gen" }, @@ -131,14 +131,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86-Debug/Debug" + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86-Debug/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86-Debug" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86-Debug" }, "name": "ninja" }, @@ -147,7 +147,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86-Debug/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86-Debug/Debug", "[START_DIR]/[SWARM_OUT_DIR]/out/Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Debug-NoGPU.json b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Debug-NoGPU.json index 0c64b0cba0..184ad85069 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Debug-NoGPU.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Debug-NoGPU.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -97,31 +97,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU/Debug", "--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"] skia_enable_gpu=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU" }, "name": "gn gen" }, @@ -131,14 +131,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU/Debug" + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU" }, "name": "ninja" }, @@ -147,7 +147,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU/Debug", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Debug-NoGPU/Debug", "[START_DIR]/[SWARM_OUT_DIR]/out/Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-ANGLE.json b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-ANGLE.json index 28197f8e70..2ddf353a64 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-ANGLE.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-ANGLE.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -97,31 +97,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE/Release", "--args=cc=\"gcc\" cxx=\"g++\" is_debug=false skia_use_angle=true target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" }, "name": "gn gen" }, @@ -131,14 +131,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE" }, "name": "ninja" }, @@ -147,7 +147,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-ANGLE/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json index 9cc8e47e89..a824cfa38f 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]/flutter" + "[START_DIR]/cache/work/flutter" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/flutter/.gclient_entries" + "[START_DIR]/cache/work/flutter/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/flutter/.gclient_entries" + "name": "remove [START_DIR]/cache/work/flutter/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'src/flutter', 'url': 'https://github.com/flutter/engine.git'}]\ntarget_os = ['android']", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'src/flutter', 'url': 'https://github.com/flutter/engine.git'}]\ntarget_os = ['android']", "--patch_root", "src/third_party/skia", "--revision_mapping_file", "{\"got_flutter_revision\": \"src/flutter\", \"got_revision\": \"src/third_party/skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -49,7 +49,7 @@ "--revision", "src/third_party/skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter", + "cwd": "[START_DIR]/cache/work/flutter", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -117,7 +117,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "env": { "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]" }, @@ -131,9 +131,9 @@ "--json-output", "/path/to/tmp/json", "rmtree", - "[CUSTOM_/_B_WORK]/flutter/src/out/android_release" + "[START_DIR]/cache/work/flutter/src/out/android_release" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "infra_step": true, "name": "rmtree android_release" }, @@ -143,12 +143,12 @@ "--runtime-mode=release", "--android" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" + "SKIA_OUT": "[START_DIR]/cache/work/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" }, "name": "gn_gen" }, @@ -159,12 +159,12 @@ "out/android_release", "-j100" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" + "SKIA_OUT": "[START_DIR]/cache/work/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" }, "name": "build_flutter" }, @@ -173,7 +173,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android/Release", + "[START_DIR]/cache/work/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json index 2592241d42..b14dd5668d 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'pdfium', 'url': 'https://pdfium.googlesource.com/pdfium.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'pdfium', 'url': 'https://pdfium.googlesource.com/pdfium.git'}]", "--patch_root", "pdfium/third_party/skia", "--revision_mapping_file", "{\"got_pdfium_revision\": \"pdfium\", \"got_revision\": \"pdfium/third_party/skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -49,7 +49,7 @@ "--revision", "pdfium/third_party/skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -117,7 +117,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]" @@ -130,13 +130,13 @@ "build/linux/sysroot_scripts/install-sysroot.py", "--arch=amd64" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" }, "name": "sysroot" }, @@ -147,14 +147,14 @@ "out/skia", "--args=pdf_is_standalone=true clang_use_chrome_plugins=false is_component_build=false is_debug=false pdf_use_skia=true" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "CHROMIUM_BUILDTOOLS_PATH": "[CUSTOM_/_B_WORK]/pdfium/buildtools", + "CHROMIUM_BUILDTOOLS_PATH": "[START_DIR]/cache/work/pdfium/buildtools", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" }, "name": "gn_gen" }, @@ -165,14 +165,14 @@ "out/skia", "-j100" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "CHROMIUM_BUILDTOOLS_PATH": "[CUSTOM_/_B_WORK]/pdfium/buildtools", + "CHROMIUM_BUILDTOOLS_PATH": "[START_DIR]/cache/work/pdfium/buildtools", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" }, "name": "build_pdfium" }, @@ -181,7 +181,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium/Release", + "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths.json b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths.json index 434c6b1539..c643894325 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'pdfium', 'url': 'https://pdfium.googlesource.com/pdfium.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'pdfium', 'url': 'https://pdfium.googlesource.com/pdfium.git'}]", "--patch_root", "pdfium/third_party/skia", "--revision_mapping_file", "{\"got_pdfium_revision\": \"pdfium\", \"got_revision\": \"pdfium/third_party/skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -49,7 +49,7 @@ "--revision", "pdfium/third_party/skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -117,7 +117,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]" @@ -130,13 +130,13 @@ "build/linux/sysroot_scripts/install-sysroot.py", "--arch=amd64" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" }, "name": "sysroot" }, @@ -147,14 +147,14 @@ "out/skia", "--args=pdf_is_standalone=true clang_use_chrome_plugins=false is_component_build=false is_debug=false pdf_use_skia_paths=true" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "CHROMIUM_BUILDTOOLS_PATH": "[CUSTOM_/_B_WORK]/pdfium/buildtools", + "CHROMIUM_BUILDTOOLS_PATH": "[START_DIR]/cache/work/pdfium/buildtools", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" }, "name": "gn_gen" }, @@ -165,14 +165,14 @@ "out/skia", "-j100" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "CHROMIUM_BUILDTOOLS_PATH": "[CUSTOM_/_B_WORK]/pdfium/buildtools", + "CHROMIUM_BUILDTOOLS_PATH": "[START_DIR]/cache/work/pdfium/buildtools", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths" }, "name": "build_pdfium" }, @@ -181,7 +181,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths/Release", + "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-Shared.json b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-Shared.json index 3dc69c4661..6bfeb1fabb 100644 --- a/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-Shared.json +++ b/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-Shared.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -97,31 +97,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-Shared/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-Shared/Release", "--args=cc=\"gcc\" cxx=\"g++\" is_component_build=true is_debug=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" }, "name": "gn gen" }, @@ -131,14 +131,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-Shared/Release" + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-Shared/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-Shared" }, "name": "ninja" }, @@ -147,7 +147,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Debian9-GCC-x86_64-Release-Shared/Release", + "[START_DIR]/cache/work/skia/out/Build-Debian9-GCC-x86_64-Release-Shared/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-Android.json b/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-Android.json index 5947f190cc..f6b6839b0f 100644 --- a/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-Android.json +++ b/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-Android.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/android_ndk_darwin/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/android_ndk_darwin/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-Android" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-Android" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-Android/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-Android/Debug", "--args=extra_cflags=[\"-O1\", \"-DDUMMY_ndk_version=42\"] ndk=\"[START_DIR]/android_ndk_darwin\" target_cpu=\"arm64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-Android" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-Android" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-Android/Debug" + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-Android/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-Android" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-Android" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-Android/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-Android/Debug", "[START_DIR]/[SWARM_OUT_DIR]/out/Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-iOS.json b/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-iOS.json index d011552022..6cb43df8d9 100644 --- a/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-iOS.json +++ b/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-iOS.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -97,31 +97,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-iOS" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-iOS" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-iOS/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-iOS/Debug", "--args=cc=\"clang\" cxx=\"clang++\" extra_cflags=[\"-O1\"] skia_ios_identity=\".*GS9WA.*\" skia_ios_profile=\"Upstream Testing Provisioning Profile\" target_cpu=\"arm64\" target_os=\"ios\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-iOS" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-iOS" }, "name": "gn gen" }, @@ -131,14 +131,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-iOS/Debug" + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-iOS/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-iOS" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-iOS" }, "name": "ninja" }, @@ -147,7 +147,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-arm64-Debug-iOS/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-arm64-Debug-iOS/Debug", "[START_DIR]/[SWARM_OUT_DIR]/out/Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x64-Release-iOS.json b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x64-Release-iOS.json index 952ba1327a..5ba5ef217f 100644 --- a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x64-Release-iOS.json +++ b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x64-Release-iOS.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -97,31 +97,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x64-Release-iOS" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x64-Release-iOS" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x64-Release-iOS/Release", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x64-Release-iOS/Release", "--args=cc=\"clang\" cxx=\"clang++\" is_debug=false skia_ios_identity=\".*GS9WA.*\" skia_ios_profile=\"Upstream Testing Provisioning Profile\" target_cpu=\"x64\" target_os=\"ios\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x64-Release-iOS" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x64-Release-iOS" }, "name": "gn gen" }, @@ -131,14 +131,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x64-Release-iOS/Release" + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x64-Release-iOS/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x64-Release-iOS" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x64-Release-iOS" }, "name": "ninja" }, @@ -147,7 +147,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x64-Release-iOS/Release", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x64-Release-iOS/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json index 9a1bd71949..0f05d1410f 100644 --- a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json +++ b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}, {'deps_file': '.DEPS.git', 'managed': False, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}, {'deps_file': '.DEPS.git', 'managed': False, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -49,7 +49,7 @@ "--revision", "src@origin/lkcr" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -103,7 +103,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env": { "DEPOT_TOOLS_UPDATE": "0", "GYP_CHROMIUM_NO_ACTION": "0", @@ -115,11 +115,11 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/tools/build_command_buffer.py", + "[START_DIR]/cache/work/skia/tools/build_command_buffer.py", "--chrome-dir", - "[CUSTOM_/_B_WORK]", + "[START_DIR]/cache/work", "--output-dir", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug", "--no-sync", "--no-hooks", "--make-output-dir" @@ -128,7 +128,7 @@ "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" }, "name": "build command_buffer" }, @@ -136,31 +136,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug", "--args=cc=\"clang\" cxx=\"clang++\" extra_cflags=[\"-O1\"] target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" }, "name": "gn gen" }, @@ -170,14 +170,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug" + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer" }, "name": "ninja" }, @@ -186,7 +186,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Debug-CommandBuffer/Debug", "[START_DIR]/[SWARM_OUT_DIR]/out/Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Release.json b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Release.json index f4eb37af08..f949ec89e3 100644 --- a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Release.json +++ b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Release.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -97,31 +97,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Release" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_/_B_WORK]/skia/bin/gn", + "[START_DIR]/cache/work/skia/bin/gn", "gen", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Release/Release", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Release/Release", "--args=cc=\"clang\" cxx=\"clang++\" is_debug=false target_cpu=\"x86_64\"" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Release" }, "name": "gn gen" }, @@ -131,14 +131,14 @@ "-k", "0", "-C", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Release/Release" + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Release/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Release" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Release" }, "name": "ninja" }, @@ -147,7 +147,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-x86_64-Release/Release", + "[START_DIR]/cache/work/skia/out/Build-Mac-Clang-x86_64-Release/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Win-Clang-arm64-Release-Android.json b/infra/bots/recipes/compile.expected/Build-Win-Clang-arm64-Release-Android.json index 77b178832f..22a2bbf0eb 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-Clang-arm64-Release-Android.json +++ b/infra/bots/recipes/compile.expected/Build-Win-Clang-arm64-Release-Android.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_C:\\_B_WORK]" + "[START_DIR]\\cache\\work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_C:\\_B_WORK]\\.gclient_entries" + "[START_DIR]\\cache\\work\\.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_C:\\_B_WORK]\\.gclient_entries" + "name": "remove [START_DIR]\\cache\\work\\.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]\\resources\\bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_C:\\\\_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]\\\\cache\\\\git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_C:\\_B_CACHE]", + "[START_DIR]\\cache\\git", "--cleanup-dir", "[CLEANUP]\\bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_C:\\_B_WORK]", + "cwd": "[START_DIR]\\cache\\work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]\\skia\\infra\\bots\\assets\\android_ndk_windows\\VERSION", + "[START_DIR]\\cache\\work\\skia\\infra\\bots\\assets\\android_ndk_windows\\VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]\\skia\\bin\\fetch-gn" + "[START_DIR]\\cache\\work\\skia\\bin\\fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-arm64-Release-Android" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-arm64-Release-Android" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]\\skia\\bin\\gn.exe", + "[START_DIR]\\cache\\work\\skia\\bin\\gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-arm64-Release-Android\\Release", + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-arm64-Release-Android\\Release", "--args=extra_cflags=[\"-DDUMMY_ndk_version=42\"] is_debug=false ndk=\"[START_DIR]\\n\" target_cpu=\"arm64\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-arm64-Release-Android" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-arm64-Release-Android" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-arm64-Release-Android\\Release" + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-arm64-Release-Android\\Release" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-arm64-Release-Android" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-arm64-Release-Android" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-arm64-Release-Android\\Release", + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-arm64-Release-Android\\Release", "[START_DIR]\\[SWARM_OUT_DIR]\\out\\Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Win-Clang-x86-Debug-Exceptions.json b/infra/bots/recipes/compile.expected/Build-Win-Clang-x86-Debug-Exceptions.json index 3f2c05a1b7..81800fb00d 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-Clang-x86-Debug-Exceptions.json +++ b/infra/bots/recipes/compile.expected/Build-Win-Clang-x86-Debug-Exceptions.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_C:\\_B_WORK]" + "[START_DIR]\\cache\\work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_C:\\_B_WORK]\\.gclient_entries" + "[START_DIR]\\cache\\work\\.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_C:\\_B_WORK]\\.gclient_entries" + "name": "remove [START_DIR]\\cache\\work\\.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]\\resources\\bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_C:\\\\_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]\\\\cache\\\\git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_C:\\_B_CACHE]", + "[START_DIR]\\cache\\git", "--cleanup-dir", "[CLEANUP]\\bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_C:\\_B_WORK]", + "cwd": "[START_DIR]\\cache\\work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]\\skia\\infra\\bots\\assets\\clang_win\\VERSION", + "[START_DIR]\\cache\\work\\skia\\infra\\bots\\assets\\clang_win\\VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]\\skia\\bin\\fetch-gn" + "[START_DIR]\\cache\\work\\skia\\bin\\fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]\\skia\\bin\\gn.exe", + "[START_DIR]\\cache\\work\\skia\\bin\\gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions\\Debug", + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions\\Debug", "--args=cc=\"clang\" clang_win=\"[START_DIR]\\clang_win\" cxx=\"clang++\" extra_cflags=[\"-O1\", \"/EHsc\", \"-DDUMMY_clang_win_version=42\"] target_cpu=\"x86\" win_sdk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\a9e1098bba66d2acccc377d5ee81265910f29272/win_sdk\" win_vc=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\a9e1098bba66d2acccc377d5ee81265910f29272/VC\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions\\Debug" + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions\\Debug" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions\\Debug", + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug-Exceptions\\Debug", "[START_DIR]\\[SWARM_OUT_DIR]\\out\\Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Win-Clang-x86-Debug.json b/infra/bots/recipes/compile.expected/Build-Win-Clang-x86-Debug.json index 74e4687d5c..57f5008026 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-Clang-x86-Debug.json +++ b/infra/bots/recipes/compile.expected/Build-Win-Clang-x86-Debug.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_C:\\_B_WORK]" + "[START_DIR]\\cache\\work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_C:\\_B_WORK]\\.gclient_entries" + "[START_DIR]\\cache\\work\\.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_C:\\_B_WORK]\\.gclient_entries" + "name": "remove [START_DIR]\\cache\\work\\.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]\\resources\\bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_C:\\\\_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]\\\\cache\\\\git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_C:\\_B_CACHE]", + "[START_DIR]\\cache\\git", "--cleanup-dir", "[CLEANUP]\\bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_C:\\_B_WORK]", + "cwd": "[START_DIR]\\cache\\work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]\\skia\\infra\\bots\\assets\\clang_win\\VERSION", + "[START_DIR]\\cache\\work\\skia\\infra\\bots\\assets\\clang_win\\VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]\\skia\\bin\\fetch-gn" + "[START_DIR]\\cache\\work\\skia\\bin\\fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]\\skia\\bin\\gn.exe", + "[START_DIR]\\cache\\work\\skia\\bin\\gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug\\Debug", + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug\\Debug", "--args=cc=\"clang\" clang_win=\"[START_DIR]\\clang_win\" cxx=\"clang++\" extra_cflags=[\"-O1\", \"-DDUMMY_clang_win_version=42\"] target_cpu=\"x86\" win_sdk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\a9e1098bba66d2acccc377d5ee81265910f29272/win_sdk\" win_vc=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\a9e1098bba66d2acccc377d5ee81265910f29272/VC\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug\\Debug" + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug\\Debug" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Debug", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86-Debug\\Debug", + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86-Debug\\Debug", "[START_DIR]\\[SWARM_OUT_DIR]\\out\\Debug" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Win-Clang-x86_64-Debug-ANGLE.json b/infra/bots/recipes/compile.expected/Build-Win-Clang-x86_64-Debug-ANGLE.json index 04ec5b0bde..70fd9b6c3a 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-Clang-x86_64-Debug-ANGLE.json +++ b/infra/bots/recipes/compile.expected/Build-Win-Clang-x86_64-Debug-ANGLE.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_C:\\_B_WORK]" + "[START_DIR]\\cache\\work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_C:\\_B_WORK]\\.gclient_entries" + "[START_DIR]\\cache\\work\\.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_C:\\_B_WORK]\\.gclient_entries" + "name": "remove [START_DIR]\\cache\\work\\.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]\\resources\\bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_C:\\\\_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]\\\\cache\\\\git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_C:\\_B_CACHE]", + "[START_DIR]\\cache\\git", "--cleanup-dir", "[CLEANUP]\\bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_C:\\_B_WORK]", + "cwd": "[START_DIR]\\cache\\work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]\\skia\\infra\\bots\\assets\\clang_win\\VERSION", + "[START_DIR]\\cache\\work\\skia\\infra\\bots\\assets\\clang_win\\VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]\\skia\\bin\\fetch-gn" + "[START_DIR]\\cache\\work\\skia\\bin\\fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Debug_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]\\skia\\bin\\gn.exe", + "[START_DIR]\\cache\\work\\skia\\bin\\gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE\\Debug_x64", + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE\\Debug_x64", "--args=cc=\"clang\" clang_win=\"[START_DIR]\\clang_win\" cxx=\"clang++\" extra_cflags=[\"-O1\", \"-DDUMMY_clang_win_version=42\"] skia_use_angle=true target_cpu=\"x86_64\" win_sdk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\a9e1098bba66d2acccc377d5ee81265910f29272/win_sdk\" win_vc=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\a9e1098bba66d2acccc377d5ee81265910f29272/VC\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Debug_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE\\Debug_x64" + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE\\Debug_x64" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Debug_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE\\Debug_x64", + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Debug-ANGLE\\Debug_x64", "[START_DIR]\\[SWARM_OUT_DIR]\\out\\Debug_x64" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/Build-Win-Clang-x86_64-Release-Vulkan.json b/infra/bots/recipes/compile.expected/Build-Win-Clang-x86_64-Release-Vulkan.json index 9c662d0a46..bbd857c4e6 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-Clang-x86_64-Release-Vulkan.json +++ b/infra/bots/recipes/compile.expected/Build-Win-Clang-x86_64-Release-Vulkan.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_C:\\_B_WORK]" + "[START_DIR]\\cache\\work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_C:\\_B_WORK]\\.gclient_entries" + "[START_DIR]\\cache\\work\\.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_C:\\_B_WORK]\\.gclient_entries" + "name": "remove [START_DIR]\\cache\\work\\.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]\\resources\\bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_C:\\\\_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]\\\\cache\\\\git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_C:\\_B_CACHE]", + "[START_DIR]\\cache\\git", "--cleanup-dir", "[CLEANUP]\\bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_C:\\_B_WORK]", + "cwd": "[START_DIR]\\cache\\work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]\\skia\\infra\\bots\\assets\\clang_win\\VERSION", + "[START_DIR]\\cache\\work\\skia\\infra\\bots\\assets\\clang_win\\VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]\\skia\\bin\\fetch-gn" + "[START_DIR]\\cache\\work\\skia\\bin\\fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]\\skia\\bin\\gn.exe", + "[START_DIR]\\cache\\work\\skia\\bin\\gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan\\Release_x64", + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan\\Release_x64", "--args=cc=\"clang\" clang_win=\"[START_DIR]\\clang_win\" cxx=\"clang++\" extra_cflags=[\"-DDUMMY_clang_win_version=42\"] is_debug=false skia_enable_vulkan_debug_layers=false skia_vulkan_sdk=\"[START_DIR]\\win_vulkan_sdk\" target_cpu=\"x86_64\" win_sdk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\a9e1098bba66d2acccc377d5ee81265910f29272/win_sdk\" win_vc=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\a9e1098bba66d2acccc377d5ee81265910f29272/VC\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan\\Release_x64" + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan\\Release_x64" ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", + "cwd": "[START_DIR]\\cache\\work\\skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>;RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan\\Release_x64", + "[START_DIR]\\cache\\work\\skia\\out\\Build-Win-Clang-x86_64-Release-Vulkan\\Release_x64", "[START_DIR]\\[SWARM_OUT_DIR]\\out\\Release_x64" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/alternate_repo.json b/infra/bots/recipes/compile.expected/alternate_repo.json index 1f2410ca26..570c282e5e 100644 --- a/infra/bots/recipes/compile.expected/alternate_repo.json +++ b/infra/bots/recipes/compile.expected/alternate_repo.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_C:\\_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_C:\\_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_C:\\_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_C:\\\\_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'other_repo', 'url': 'https://skia.googlesource.com/other_repo.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'other_repo', 'url': 'https://skia.googlesource.com/other_repo.git'}]", "--patch_root", "other_repo", "--revision_mapping_file", "{\"got_revision\": \"other_repo\"}", "--git-cache-dir", - "[CUSTOM_C:\\_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "other_repo@abc123" ], - "cwd": "[CUSTOM_C:\\_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -101,7 +101,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]/skia/infra/bots/assets/clang_win/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_win/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -111,31 +111,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]/skia/bin/gn.exe", + "[START_DIR]/cache/work/skia/bin/gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64", + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64", "--args=cc=\"clang\" clang_win=\"[START_DIR]/clang_win\" cxx=\"clang++\" extra_cflags=[\"-DDUMMY_clang_win_version=42\"] is_debug=false skia_enable_vulkan_debug_layers=false skia_vulkan_sdk=\"[START_DIR]/win_vulkan_sdk\" target_cpu=\"x86_64\" win_sdk=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/win_sdk\" win_vc=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/VC\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "gn gen" }, @@ -145,14 +145,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64" + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "ninja" }, @@ -161,7 +161,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64", + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64", "[START_DIR]/[SWARM_OUT_DIR]/out/Release_x64" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/flutter_trybot.json b/infra/bots/recipes/compile.expected/flutter_trybot.json index 5f8cc36499..69c2d1c35e 100644 --- a/infra/bots/recipes/compile.expected/flutter_trybot.json +++ b/infra/bots/recipes/compile.expected/flutter_trybot.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]/flutter" + "[START_DIR]/cache/work/flutter" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/flutter/.gclient_entries" + "[START_DIR]/cache/work/flutter/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/flutter/.gclient_entries" + "name": "remove [START_DIR]/cache/work/flutter/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'src/flutter', 'url': 'https://github.com/flutter/engine.git'}]\ntarget_os = ['android']", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'src/flutter', 'url': 'https://github.com/flutter/engine.git'}]\ntarget_os = ['android']", "--patch_root", "src/third_party/skia", "--revision_mapping_file", "{\"got_flutter_revision\": \"src/flutter\", \"got_revision\": \"src/third_party/skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--gerrit_repo", @@ -53,7 +53,7 @@ "--revision", "src/third_party/skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter", + "cwd": "[START_DIR]/cache/work/flutter", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -121,7 +121,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "env": { "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]" }, @@ -135,9 +135,9 @@ "--json-output", "/path/to/tmp/json", "rmtree", - "[CUSTOM_/_B_WORK]/flutter/src/out/android_release" + "[START_DIR]/cache/work/flutter/src/out/android_release" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "infra_step": true, "name": "rmtree android_release" }, @@ -147,12 +147,12 @@ "--runtime-mode=release", "--android" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" + "SKIA_OUT": "[START_DIR]/cache/work/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" }, "name": "gn_gen" }, @@ -163,12 +163,12 @@ "out/android_release", "-j100" ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src", + "cwd": "[START_DIR]/cache/work/flutter/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" + "SKIA_OUT": "[START_DIR]/cache/work/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android" }, "name": "build_flutter" }, @@ -177,7 +177,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android/Release", + "[START_DIR]/cache/work/flutter/src/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-Flutter_Android/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/pdfium_trybot.json b/infra/bots/recipes/compile.expected/pdfium_trybot.json index d4fbbcfa1b..737c92b7e6 100644 --- a/infra/bots/recipes/compile.expected/pdfium_trybot.json +++ b/infra/bots/recipes/compile.expected/pdfium_trybot.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'pdfium', 'url': 'https://pdfium.googlesource.com/pdfium.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'pdfium', 'url': 'https://pdfium.googlesource.com/pdfium.git'}]", "--patch_root", "pdfium/third_party/skia", "--revision_mapping_file", "{\"got_pdfium_revision\": \"pdfium\", \"got_revision\": \"pdfium/third_party/skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--gerrit_repo", @@ -53,7 +53,7 @@ "--revision", "pdfium/third_party/skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -121,7 +121,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]" @@ -134,13 +134,13 @@ "build/linux/sysroot_scripts/install-sysroot.py", "--arch=amd64" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" }, "name": "sysroot" }, @@ -151,14 +151,14 @@ "out/skia", "--args=pdf_is_standalone=true clang_use_chrome_plugins=false is_component_build=false is_debug=false pdf_use_skia=true" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "CHROMIUM_BUILDTOOLS_PATH": "[CUSTOM_/_B_WORK]/pdfium/buildtools", + "CHROMIUM_BUILDTOOLS_PATH": "[START_DIR]/cache/work/pdfium/buildtools", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" }, "name": "gn_gen" }, @@ -169,14 +169,14 @@ "out/skia", "-j100" ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", + "cwd": "[START_DIR]/cache/work/pdfium", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", - "CHROMIUM_BUILDTOOLS_PATH": "[CUSTOM_/_B_WORK]/pdfium/buildtools", + "CHROMIUM_BUILDTOOLS_PATH": "[START_DIR]/cache/work/pdfium/buildtools", "DEPOT_TOOLS_UPDATE": "0", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" + "SKIA_OUT": "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium" }, "name": "build_pdfium" }, @@ -185,7 +185,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_/_B_WORK]/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium/Release", + "[START_DIR]/cache/work/pdfium/third_party/skia/out/Build-Debian9-GCC-x86_64-Release-PDFium/Release", "[START_DIR]/[SWARM_OUT_DIR]/out/Release" ], "infra_step": true, diff --git a/infra/bots/recipes/compile.expected/trybot.json b/infra/bots/recipes/compile.expected/trybot.json index 6c30e1a347..d1728a19fb 100644 --- a/infra/bots/recipes/compile.expected/trybot.json +++ b/infra/bots/recipes/compile.expected/trybot.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_C:\\_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_C:\\_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_C:\\_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_C:\\\\_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_C:\\_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--gerrit_repo", @@ -51,7 +51,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_C:\\_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -105,7 +105,7 @@ "--json-output", "/path/to/tmp/json", "copy", - "[CUSTOM_C:\\_B_WORK]/skia/infra/bots/assets/clang_win/VERSION", + "[START_DIR]/cache/work/skia/infra/bots/assets/clang_win/VERSION", "/path/to/tmp/" ], "infra_step": true, @@ -115,31 +115,31 @@ "cmd": [ "python", "-u", - "[CUSTOM_C:\\_B_WORK]/skia/bin/fetch-gn" + "[START_DIR]/cache/work/skia/bin/fetch-gn" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "infra_step": true, "name": "fetch-gn" }, { "cmd": [ - "[CUSTOM_C:\\_B_WORK]/skia/bin/gn.exe", + "[START_DIR]/cache/work/skia/bin/gn.exe", "gen", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64", + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64", "--args=cc=\"clang\" clang_win=\"[START_DIR]/clang_win\" cxx=\"clang++\" extra_cflags=[\"-DDUMMY_clang_win_version=42\"] is_debug=false skia_enable_vulkan_debug_layers=false skia_vulkan_sdk=\"[START_DIR]/win_vulkan_sdk\" target_cpu=\"x86_64\" win_sdk=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/win_sdk\" win_vc=\"[START_DIR]/t/depot_tools/win_toolchain/vs_files/a9e1098bba66d2acccc377d5ee81265910f29272/VC\"" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "gn gen" }, @@ -149,14 +149,14 @@ "-k", "0", "-C", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64" + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64" ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release_x64", "CHROME_HEADLESS": "1", "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", - "SKIA_OUT": "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" + "SKIA_OUT": "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan" }, "name": "ninja" }, @@ -165,7 +165,7 @@ "python", "-u", "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['bookmaker', 'dm', 'dm.exe', 'dm.app', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skiaserve', 'lib/*.so', 'run_testlab', 'skqp-universal-debug.apk', 'whitelist_devices.json']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", - "[CUSTOM_C:\\_B_WORK]/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64", + "[START_DIR]/cache/work/skia/out/Build-Win-Clang-x86_64-Release-Vulkan/Release_x64", "[START_DIR]/[SWARM_OUT_DIR]/out/Release_x64" ], "infra_step": true, diff --git a/infra/bots/recipes/ct_skps.py b/infra/bots/recipes/ct_skps.py index 85f6ce8080..d0864d52fd 100644 --- a/infra/bots/recipes/ct_skps.py +++ b/infra/bots/recipes/ct_skps.py @@ -40,6 +40,13 @@ TOOL_TO_DEFAULT_SKPS_PER_SLAVE = { DEFAULT_SKPS_CHROMIUM_BUILD = '2b7e85eb251dc7-a3cf3659ed2c08' +def make_path(api, *path): + """Return a Path object for the given path.""" + key = 'custom_%s' % '_'.join(path) + api.path.c.base_paths[key] = tuple(path) + return api.path[key] + + def RunSteps(api): # Figure out which repository to use. buildername = api.properties['buildername'] @@ -71,6 +78,9 @@ def RunSteps(api): else: raise Exception('Do not recognise the buildername %s.' % buildername) + api.vars.override_checkout_root = make_path(api, '/', 'b', 'work') + api.vars.override_gclient_cache = make_path(api, '/', 'b', 'cache') + api.core.setup() api.flavor.compile(build_target) diff --git a/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json b/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json index 161047a5db..c9a214fafd 100644 --- a/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json +++ b/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--gerrit_repo", @@ -51,7 +51,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -124,7 +124,7 @@ "0777", "[START_DIR]/[SWARM_OUT_DIR]/perfdata/Housekeeper-PerCommit/data" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "infra_step": true, "name": "makedirs perf_dir" }, @@ -141,7 +141,7 @@ "--issue_number", "456789" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json b/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json index c7cfb77fc2..099d0a74f7 100644 --- a/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json +++ b/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -113,7 +113,7 @@ "python", "RECIPE_MODULE[skia::core]/resources/generate_and_upload_doxygen.py" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -134,7 +134,7 @@ "0777", "[START_DIR]/[SWARM_OUT_DIR]/perfdata/Housekeeper-PerCommit/data" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "infra_step": true, "name": "makedirs perf_dir" }, @@ -149,7 +149,7 @@ "--dest", "[START_DIR]/[SWARM_OUT_DIR]/perfdata/Housekeeper-PerCommit/data/nanobench_9046e2e693bb92a76e972b694580e5d17ad10748_1337000001.json" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/infra.expected/failed_all_updates.json b/infra/bots/recipes/infra.expected/failed_all_updates.json index 4b29cb9beb..c8086c0234 100644 --- a/infra/bots/recipes/infra.expected/failed_all_updates.json +++ b/infra/bots/recipes/infra.expected/failed_all_updates.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" diff --git a/infra/bots/recipes/infra.expected/failed_one_update.json b/infra/bots/recipes/infra.expected/failed_one_update.json index 4e3b09e266..9a53e59043 100644 --- a/infra/bots/recipes/infra.expected/failed_one_update.json +++ b/infra/bots/recipes/infra.expected/failed_one_update.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -170,7 +170,7 @@ "infra/bots", "test" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "GOPATH": "[START_DIR]/gopath", "GOROOT": "[START_DIR]/go/go", diff --git a/infra/bots/recipes/infra.expected/infra_tests.json b/infra/bots/recipes/infra.expected/infra_tests.json index f86eb5e7c6..7464a16695 100644 --- a/infra/bots/recipes/infra.expected/infra_tests.json +++ b/infra/bots/recipes/infra.expected/infra_tests.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -47,7 +47,7 @@ "--revision", "skia@abc123" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -148,7 +148,7 @@ "infra/bots", "test" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "GOPATH": "[START_DIR]/gopath", "GOROOT": "[START_DIR]/go/go", diff --git a/infra/bots/recipes/recreate_skps.expected/Housekeeper-Nightly-RecreateSKPs_Canary.json b/infra/bots/recipes/recreate_skps.expected/Housekeeper-Nightly-RecreateSKPs_Canary.json index ac899f285e..55863cd4f2 100644 --- a/infra/bots/recipes/recreate_skps.expected/Housekeeper-Nightly-RecreateSKPs_Canary.json +++ b/infra/bots/recipes/recreate_skps.expected/Housekeeper-Nightly-RecreateSKPs_Canary.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}, {'deps_file': '.DEPS.git', 'managed': False, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}, {'deps_file': '.DEPS.git', 'managed': False, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -49,7 +49,7 @@ "--revision", "src@origin/lkcr" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -103,7 +103,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env": { "CPPFLAGS": "-DSK_ALLOW_CROSSPROCESS_PICTUREIMAGEFILTERS=1", "DEPOT_TOOLS_UPDATE": "0", @@ -128,11 +128,11 @@ }, { "cmd": [ - "[CUSTOM_/_B_WORK]/src/buildtools/linux64/gn", + "[START_DIR]/cache/work/src/buildtools/linux64/gn", "gen", - "[CUSTOM_/_B_WORK]/src/out/Release" + "[START_DIR]/cache/work/src/out/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/src", + "cwd": "[START_DIR]/cache/work/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -147,10 +147,10 @@ "cmd": [ "ninja", "-C", - "[CUSTOM_/_B_WORK]/src/out/Release", + "[START_DIR]/cache/work/src/out/Release", "chrome" ], - "cwd": "[CUSTOM_/_B_WORK]/src", + "cwd": "[START_DIR]/cache/work/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -190,15 +190,15 @@ { "cmd": [ "python", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/skp/create.py", + "[START_DIR]/cache/work/skia/infra/bots/assets/skp/create.py", "--chrome_src_path", - "[CUSTOM_/_B_WORK]/src", + "[START_DIR]/cache/work/src", "--browser_executable", - "[CUSTOM_/_B_WORK]/src/out/Release/chrome", + "[START_DIR]/cache/work/src/out/Release/chrome", "--target_dir", "[START_DIR]/skp_output" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/recreate_skps.expected/Housekeeper-Weekly-RecreateSKPs.json b/infra/bots/recipes/recreate_skps.expected/Housekeeper-Weekly-RecreateSKPs.json index 74af5ca935..b2a9b0e7ed 100644 --- a/infra/bots/recipes/recreate_skps.expected/Housekeeper-Weekly-RecreateSKPs.json +++ b/infra/bots/recipes/recreate_skps.expected/Housekeeper-Weekly-RecreateSKPs.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}, {'deps_file': '.DEPS.git', 'managed': False, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}, {'deps_file': '.DEPS.git', 'managed': False, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -49,7 +49,7 @@ "--revision", "src@origin/lkcr" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -103,7 +103,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env": { "CPPFLAGS": "-DSK_ALLOW_CROSSPROCESS_PICTUREIMAGEFILTERS=1", "DEPOT_TOOLS_UPDATE": "0", @@ -128,11 +128,11 @@ }, { "cmd": [ - "[CUSTOM_/_B_WORK]/src/buildtools/linux64/gn", + "[START_DIR]/cache/work/src/buildtools/linux64/gn", "gen", - "[CUSTOM_/_B_WORK]/src/out/Release" + "[START_DIR]/cache/work/src/out/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/src", + "cwd": "[START_DIR]/cache/work/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -147,10 +147,10 @@ "cmd": [ "ninja", "-C", - "[CUSTOM_/_B_WORK]/src/out/Release", + "[START_DIR]/cache/work/src/out/Release", "chrome" ], - "cwd": "[CUSTOM_/_B_WORK]/src", + "cwd": "[START_DIR]/cache/work/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -190,15 +190,15 @@ { "cmd": [ "python", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/skp/create.py", + "[START_DIR]/cache/work/skia/infra/bots/assets/skp/create.py", "--chrome_src_path", - "[CUSTOM_/_B_WORK]/src", + "[START_DIR]/cache/work/src", "--browser_executable", - "[CUSTOM_/_B_WORK]/src/out/Release/chrome", + "[START_DIR]/cache/work/src/out/Release/chrome", "--target_dir", "[START_DIR]/skp_output" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -258,11 +258,11 @@ { "cmd": [ "python", - "[CUSTOM_/_B_WORK]/skia/infra/bots/upload_skps.py", + "[START_DIR]/cache/work/skia/infra/bots/upload_skps.py", "--target_dir", "[START_DIR]/skp_output" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/recipes/recreate_skps.expected/failed_upload.json b/infra/bots/recipes/recreate_skps.expected/failed_upload.json index a8fe5b070b..d839cf0d6f 100644 --- a/infra/bots/recipes/recreate_skps.expected/failed_upload.json +++ b/infra/bots/recipes/recreate_skps.expected/failed_upload.json @@ -9,7 +9,7 @@ "ensure-directory", "--mode", "0777", - "[CUSTOM_/_B_WORK]" + "[START_DIR]/cache/work" ], "infra_step": true, "name": "makedirs checkout_path" @@ -22,10 +22,10 @@ "--json-output", "/path/to/tmp/json", "remove", - "[CUSTOM_/_B_WORK]/.gclient_entries" + "[START_DIR]/cache/work/.gclient_entries" ], "infra_step": true, - "name": "remove [CUSTOM_/_B_WORK]/.gclient_entries" + "name": "remove [START_DIR]/cache/work/.gclient_entries" }, { "cmd": [ @@ -33,13 +33,13 @@ "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", "--spec-path", - "cache_dir = '[CUSTOM_/_B_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}, {'deps_file': '.DEPS.git', 'managed': False, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]", + "cache_dir = '[START_DIR]/cache/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}, {'deps_file': '.DEPS.git', 'managed': False, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src.git'}]", "--patch_root", "skia", "--revision_mapping_file", "{\"got_revision\": \"skia\"}", "--git-cache-dir", - "[CUSTOM_/_B_CACHE]", + "[START_DIR]/cache/git", "--cleanup-dir", "[CLEANUP]/bot_update", "--output_json", @@ -49,7 +49,7 @@ "--revision", "src@origin/lkcr" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env_prefixes": { "PATH": [ "RECIPE_PACKAGE_REPO[depot_tools]" @@ -103,7 +103,7 @@ "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", "runhooks" ], - "cwd": "[CUSTOM_/_B_WORK]", + "cwd": "[START_DIR]/cache/work", "env": { "CPPFLAGS": "-DSK_ALLOW_CROSSPROCESS_PICTUREIMAGEFILTERS=1", "DEPOT_TOOLS_UPDATE": "0", @@ -128,11 +128,11 @@ }, { "cmd": [ - "[CUSTOM_/_B_WORK]/src/buildtools/linux64/gn", + "[START_DIR]/cache/work/src/buildtools/linux64/gn", "gen", - "[CUSTOM_/_B_WORK]/src/out/Release" + "[START_DIR]/cache/work/src/out/Release" ], - "cwd": "[CUSTOM_/_B_WORK]/src", + "cwd": "[START_DIR]/cache/work/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -147,10 +147,10 @@ "cmd": [ "ninja", "-C", - "[CUSTOM_/_B_WORK]/src/out/Release", + "[START_DIR]/cache/work/src/out/Release", "chrome" ], - "cwd": "[CUSTOM_/_B_WORK]/src", + "cwd": "[START_DIR]/cache/work/src", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -190,15 +190,15 @@ { "cmd": [ "python", - "[CUSTOM_/_B_WORK]/skia/infra/bots/assets/skp/create.py", + "[START_DIR]/cache/work/skia/infra/bots/assets/skp/create.py", "--chrome_src_path", - "[CUSTOM_/_B_WORK]/src", + "[START_DIR]/cache/work/src", "--browser_executable", - "[CUSTOM_/_B_WORK]/src/out/Release/chrome", + "[START_DIR]/cache/work/src/out/Release/chrome", "--target_dir", "[START_DIR]/skp_output" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", @@ -258,11 +258,11 @@ { "cmd": [ "python", - "[CUSTOM_/_B_WORK]/skia/infra/bots/upload_skps.py", + "[START_DIR]/cache/work/skia/infra/bots/upload_skps.py", "--target_dir", "[START_DIR]/skp_output" ], - "cwd": "[CUSTOM_/_B_WORK]/skia", + "cwd": "[START_DIR]/cache/work/skia", "env": { "BUILDTYPE": "Release", "CHROME_HEADLESS": "1", diff --git a/infra/bots/tasks.json b/infra/bots/tasks.json index b529ba58b7..690d9598b1 100644 --- a/infra/bots/tasks.json +++ b/infra/bots/tasks.json @@ -3428,6 +3428,24 @@ }, "tasks": { "Build-Debian9-Clang-arm-Debug-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -3524,9 +3542,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -3536,6 +3556,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm-Debug-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -3632,9 +3670,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -3644,6 +3684,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm-Debug-Chromebook_GLES": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -3754,9 +3812,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -3766,6 +3826,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm-Release-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -3862,9 +3940,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -3874,6 +3954,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm-Release-Android_API26": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -3970,9 +4068,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -3982,6 +4082,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm-Release-Android_ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -4078,9 +4196,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -4090,6 +4210,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm-Release-Android_ASAN_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -4186,9 +4324,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -4198,6 +4338,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm-Release-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -4294,9 +4452,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -4306,6 +4466,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm-Release-Chromebook_GLES": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -4416,9 +4594,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -4428,6 +4608,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm64-Debug-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -4524,9 +4722,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -4536,6 +4736,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm64-Debug-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -4632,9 +4850,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -4644,6 +4864,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm64-Release-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -4740,9 +4978,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -4752,6 +4992,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm64-Release-Android_ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -4848,9 +5106,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -4860,6 +5120,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm64-Release-Android_ASAN_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -4956,9 +5234,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -4968,6 +5248,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-arm64-Release-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -5064,9 +5362,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -5076,6 +5376,12 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-gce_x86_phone-eng-Android_Framework": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -5167,6 +5473,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x64-Debug-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -5263,9 +5587,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -5275,6 +5601,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x64-Release-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -5371,9 +5715,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -5383,6 +5729,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86-Debug": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -5483,9 +5847,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -5495,6 +5861,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86-Debug-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -5591,9 +5975,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -5603,6 +5989,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86-Debug-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -5699,9 +6103,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -5711,6 +6117,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86-Release-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -5807,9 +6231,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -5819,6 +6245,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86-Release-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -5915,9 +6359,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -5927,6 +6373,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Debug": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -6027,9 +6491,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -6039,6 +6505,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Debug-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -6139,9 +6623,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -6151,6 +6637,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Debug-ASAN_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -6256,9 +6760,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -6268,6 +6774,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -6373,9 +6897,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -6385,6 +6911,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Debug-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -6485,9 +7029,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -6497,6 +7043,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Debug-MSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -6597,9 +7161,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -6609,6 +7175,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -6709,9 +7293,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -6721,6 +7307,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Debug-SafeStack": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -6821,9 +7425,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -6833,6 +7439,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Debug-SwiftShader": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -6938,9 +7562,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -6950,6 +7576,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Debug-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -7055,9 +7699,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -7067,6 +7713,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Debug-Vulkan_Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -7172,9 +7836,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -7184,6 +7850,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -7284,9 +7968,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -7296,6 +7982,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -7396,9 +8100,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -7408,6 +8114,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -7508,9 +8232,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -7520,6 +8246,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-ASAN_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -7625,9 +8369,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -7637,6 +8383,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-Chromebook_GLES": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -7742,9 +8506,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -7754,6 +8520,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-Fast": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -7854,9 +8638,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -7866,6 +8652,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-Mini": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -7966,9 +8770,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -7978,6 +8784,20 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-NoDEPS": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -8078,9 +8898,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -8090,6 +8912,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-ParentRevision": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -8190,9 +9030,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -8202,6 +9044,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -8302,9 +9162,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -8314,6 +9176,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE2": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -8414,9 +9294,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -8426,6 +9308,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-SK_CPU_LIMIT_SSE41": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -8526,9 +9426,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -8538,6 +9440,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-SK_FORCE_RASTER_PIPELINE_BLITTER": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -8638,9 +9558,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -8650,6 +9572,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-SwiftShader": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -8755,9 +9695,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -8767,6 +9709,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-TSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -8867,9 +9827,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -8879,6 +9841,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-TSAN_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -8984,9 +9964,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -8996,6 +9978,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-Clang-x86_64-Release-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -9101,9 +10101,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -9113,6 +10115,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-EMCC-wasm-Release": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -9213,9 +10233,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -9225,6 +10247,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-arm-Debug-Chromecast": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -9330,9 +10370,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -9342,6 +10384,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-arm-Release-Chromecast": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -9447,9 +10507,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -9459,6 +10521,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-loongson3a-Debug": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -9559,9 +10639,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -9571,6 +10653,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-loongson3a-Release": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -9671,9 +10771,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -9683,6 +10785,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-mips64el-Debug": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -9783,9 +10903,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -9795,6 +10917,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-mips64el-Release": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -9895,9 +11035,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -9907,6 +11049,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86-Debug": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -10002,9 +11162,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -10014,6 +11176,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86-Release": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -10109,9 +11289,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -10121,6 +11303,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86_64-Debug": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -10216,9 +11416,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -10228,6 +11430,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86_64-Debug-EmbededResouces": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -10323,9 +11543,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -10335,6 +11557,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86_64-Debug-NoGPU": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -10430,9 +11670,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -10442,6 +11684,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86_64-Release": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -10537,9 +11797,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -10549,6 +11811,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86_64-Release-EmbededResouces": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -10644,9 +11924,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -10656,6 +11938,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86_64-Release-Flutter_Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -10752,9 +12052,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -10764,6 +12066,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86_64-Release-NoGPU": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -10859,9 +12179,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -10871,6 +12193,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86_64-Release-PDFium": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -10966,9 +12306,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -10978,6 +12320,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -11073,9 +12433,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -11085,6 +12447,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86_64-Release-SK_CPU_LIMIT_SSE41": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -11180,9 +12560,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -11192,6 +12574,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Debian9-GCC-x86_64-Release-Shared": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -11287,9 +12687,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -11299,6 +12701,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-arm-Debug-iOS": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -11393,9 +12813,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -11405,6 +12827,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-arm-Release-iOS": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -11499,9 +12939,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -11511,6 +12953,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-arm64-Debug-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -11610,9 +13070,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -11622,6 +13084,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-arm64-Debug-iOS": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -11716,9 +13196,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -11728,6 +13210,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-arm64-Release-iOS": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -11822,9 +13322,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -11834,6 +13336,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-x64-Release-iOS": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -11928,9 +13448,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -11940,6 +13462,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-x86_64-Debug": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -12034,9 +13574,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -12046,6 +13588,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-x86_64-Debug-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -12140,9 +13700,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -12152,6 +13714,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-x86_64-Debug-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -12246,9 +13826,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 7200000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 7200000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -12258,6 +13840,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-x86_64-Debug-Metal": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -12352,9 +13952,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -12364,6 +13966,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-x86_64-Release": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -12458,9 +14078,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -12470,6 +14092,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-x86_64-Release-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -12564,9 +14204,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 7200000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 7200000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -12576,6 +14218,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Mac-Clang-x86_64-Release-TSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -12670,9 +14330,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 1, "outputs": [ @@ -12682,6 +14344,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-arm64-Release-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -12783,9 +14463,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -12795,6 +14477,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-x86-Debug": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -12897,9 +14597,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -12909,6 +14611,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-x86-Debug-Exceptions": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -13011,9 +14731,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -13023,6 +14745,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-x86-Release": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -13125,9 +14865,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -13137,6 +14879,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-x86_64-Debug": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -13239,9 +14999,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -13251,6 +15013,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-x86_64-Debug-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -13353,9 +15133,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -13365,6 +15147,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-x86_64-Debug-UBSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -13467,9 +15267,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -13479,6 +15281,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-x86_64-Debug-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -13582,9 +15402,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -13594,6 +15416,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-x86_64-Release": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -13696,9 +15536,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -13708,6 +15550,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-x86_64-Release-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -13810,9 +15670,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -13822,6 +15684,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-x86_64-Release-UBSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -13924,9 +15804,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -13936,6 +15818,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-Clang-x86_64-Release-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -14039,9 +15939,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -14051,6 +15953,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-MSVC-x86-Debug": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -14148,9 +16068,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -14160,6 +16082,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-MSVC-x86-Release": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -14257,9 +16197,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -14269,6 +16211,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-MSVC-x86_64-Debug": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -14366,9 +16326,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -14378,6 +16340,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-MSVC-x86_64-Debug-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -14476,9 +16456,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -14488,6 +16470,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-MSVC-x86_64-Release": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -14585,9 +16585,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -14597,6 +16599,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Build-Win-MSVC-x86_64-Release-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -14695,9 +16715,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "max_attempts": 2, "outputs": [ @@ -14707,6 +16729,24 @@ "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -14810,9 +16850,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "calmbench.isolate", "max_attempts": 1, "outputs": [ @@ -14821,6 +16863,24 @@ "priority": 0.8 }, "Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -14923,9 +16983,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "calmbench.isolate", "max_attempts": 1, "outputs": [ @@ -14934,6 +16996,16 @@ "priority": 0.8 }, "Housekeeper-Nightly-Bookmaker": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -15045,6 +17117,12 @@ "service_account": "skia-bookmaker@skia-swarming-bots.iam.gserviceaccount.com" }, "Housekeeper-Nightly-RecreateSKPs_Canary": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -15155,6 +17233,24 @@ "service_account": "skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com" }, "Housekeeper-OnDemand-Presubmit": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -15251,14 +17347,34 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "empty.isolate", "priority": 0.8, "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Housekeeper-PerCommit": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -15360,14 +17476,26 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-housekeeper@skia-swarming-bots.iam.gserviceaccount.com" }, "Housekeeper-PerCommit-Bookmaker": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -15518,6 +17646,16 @@ "priority": 0.7 }, "Housekeeper-PerCommit-CheckGeneratedFiles": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -15598,14 +17736,34 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" }, "Housekeeper-PerCommit-InfraTests": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -15706,9 +17864,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-compile-tasks@skia-swarming-bots.iam.gserviceaccount.com" @@ -15858,6 +18018,12 @@ "priority": 0.7 }, "Housekeeper-Weekly-RecreateSKPs": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -15968,6 +18134,12 @@ "service_account": "skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com" }, "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -16065,6 +18237,12 @@ "priority": 0.8 }, "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -16162,6 +18340,12 @@ "priority": 0.8 }, "Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -16259,6 +18443,12 @@ "priority": 0.8 }, "Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -16356,6 +18546,12 @@ "priority": 0.8 }, "Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -16453,6 +18649,12 @@ "priority": 0.8 }, "Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -16550,6 +18752,12 @@ "priority": 0.8 }, "Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -16647,6 +18855,12 @@ "priority": 0.8 }, "Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -16744,6 +18958,12 @@ "priority": 0.8 }, "Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -16841,6 +19061,12 @@ "priority": 0.8 }, "Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -16938,6 +19164,12 @@ "priority": 0.8 }, "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -17035,6 +19267,12 @@ "priority": 0.8 }, "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -17132,6 +19370,12 @@ "priority": 0.8 }, "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -17229,6 +19473,12 @@ "priority": 0.8 }, "Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -17326,6 +19576,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5-CPU-Snapdragon800-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -17423,6 +19679,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5-CPU-Snapdragon800-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -17520,6 +19782,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -17617,6 +19885,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -17714,6 +19988,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-CPU-Snapdragon808-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -17811,6 +20091,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-CPU-Snapdragon808-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -17908,6 +20194,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-CPU-Snapdragon808-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -18005,6 +20297,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-CPU-Snapdragon808-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -18102,6 +20400,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -18199,6 +20503,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -18296,6 +20606,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -18393,6 +20709,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -18490,6 +20812,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -18587,6 +20915,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -18684,6 +21018,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -18781,6 +21121,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -18878,6 +21224,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus7-CPU-Tegra3-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -18975,6 +21327,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus7-CPU-Tegra3-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -19072,6 +21430,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -19169,6 +21533,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -19266,6 +21636,12 @@ "priority": 0.8 }, "Perf-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -19363,6 +21739,12 @@ "priority": 0.8 }, "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -19460,6 +21842,12 @@ "priority": 0.8 }, "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -19557,6 +21945,12 @@ "priority": 0.8 }, "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -19654,6 +22048,12 @@ "priority": 0.8 }, "Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -19751,6 +22151,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -19848,6 +22254,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -19945,6 +22357,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -20042,6 +22460,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -20137,6 +22561,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -20232,6 +22662,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -20329,6 +22765,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -20424,6 +22866,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -20521,6 +22969,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -20618,6 +23072,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -20715,6 +23175,12 @@ "priority": 0.8 }, "Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -20812,6 +23278,12 @@ "priority": 0.8 }, "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -20907,6 +23379,12 @@ "priority": 0.8 }, "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -21002,6 +23480,12 @@ "priority": 0.8 }, "Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -21097,6 +23581,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -21194,6 +23684,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -21291,6 +23787,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -21388,6 +23890,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -21485,6 +23993,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -21582,6 +24096,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -21679,6 +24199,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -21776,6 +24302,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -21873,6 +24405,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -21970,6 +24508,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -22067,6 +24611,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -22164,6 +24714,12 @@ "priority": 0.8 }, "Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -22261,6 +24817,12 @@ "priority": 0.8 }, "Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -22356,6 +24918,12 @@ "priority": 0.8 }, "Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -22451,6 +25019,12 @@ "priority": 0.8 }, "Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -22546,6 +25120,12 @@ "priority": 0.8 }, "Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -22641,6 +25221,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -22750,6 +25336,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -22859,6 +25451,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -22973,6 +25571,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -23087,6 +25691,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -23196,6 +25806,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -23305,6 +25921,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -23414,6 +26036,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -23528,6 +26156,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -23637,6 +26271,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -23746,6 +26386,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -23855,6 +26501,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -23964,6 +26616,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -24077,6 +26735,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -24195,6 +26859,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -24308,6 +26978,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -24426,6 +27102,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -24539,6 +27221,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -24657,6 +27345,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -24770,6 +27464,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -24888,6 +27588,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -25001,6 +27707,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -25114,6 +27826,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -25227,6 +27945,12 @@ "priority": 0.8 }, "Perf-Debian9-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -25340,6 +28064,12 @@ "priority": 0.8 }, "Perf-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -25449,6 +28179,12 @@ "priority": 0.8 }, "Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -25558,6 +28294,12 @@ "priority": 0.8 }, "Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -25667,6 +28409,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -25775,6 +28523,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -25883,6 +28637,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -25991,6 +28751,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -26099,6 +28865,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -26207,6 +28979,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Release-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -26315,6 +29093,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -26423,6 +29207,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -26531,6 +29321,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -26639,6 +29435,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -26748,6 +29550,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -26857,6 +29665,12 @@ "priority": 0.8 }, "Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -26966,6 +29780,24 @@ "priority": 0.8 }, "Perf-Ubuntu14-Clang-GCE-CPU-AVX2-x86_64-Release-All-CT_BENCH_1k_SKPs": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -27074,6 +29906,24 @@ "service_account": "skia-external-ct-skps@skia-swarming-bots.iam.gserviceaccount.com" }, "Perf-Ubuntu14-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-CT_BENCH_1k_SKPs": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -27182,6 +30032,12 @@ "service_account": "skia-external-ct-skps@skia-swarming-bots.iam.gserviceaccount.com" }, "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -27290,6 +30146,12 @@ "priority": 0.8 }, "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -27403,6 +30265,12 @@ "priority": 0.8 }, "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -27516,6 +30384,12 @@ "priority": 0.8 }, "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -27624,6 +30498,12 @@ "priority": 0.8 }, "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -27737,6 +30617,12 @@ "priority": 0.8 }, "Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -27850,6 +30736,12 @@ "priority": 0.8 }, "Perf-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -27964,6 +30856,12 @@ "priority": 0.8 }, "Perf-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_SK_CPU_LIMIT_SSE41": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -28078,6 +30976,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -28186,6 +31090,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -28294,6 +31204,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -28402,6 +31318,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -28510,6 +31432,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -28618,6 +31546,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -28726,6 +31660,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -28834,6 +31774,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -28942,6 +31888,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -29050,6 +32002,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -29158,6 +32116,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -29266,6 +32230,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -29374,6 +32344,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -29482,6 +32458,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -29590,6 +32572,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -29698,6 +32686,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -29806,6 +32800,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -29914,6 +32914,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -30022,6 +33028,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -30130,6 +33142,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -30238,6 +33256,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -30346,6 +33370,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -30454,6 +33484,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -30562,6 +33598,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -30670,6 +33712,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -30778,6 +33826,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -30886,6 +33940,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -30994,6 +34054,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -31102,6 +34168,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -31210,6 +34282,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -31318,6 +34396,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -31426,6 +34510,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -31534,6 +34624,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -31642,6 +34738,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -31750,6 +34852,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -31858,6 +34966,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -31966,6 +35080,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -32074,6 +35194,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -32182,6 +35308,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -32290,6 +35422,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -32398,6 +35536,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -32506,6 +35650,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -32614,6 +35764,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -32723,6 +35879,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -32832,6 +35994,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -32941,6 +36109,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -33050,6 +36224,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -33159,6 +36339,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -33268,6 +36454,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -33376,6 +36568,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -33484,6 +36682,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -33592,6 +36796,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -33700,6 +36910,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -33808,6 +37024,12 @@ "priority": 0.8 }, "Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -33916,6 +37138,12 @@ "priority": 0.8 }, "Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -34024,6 +37252,12 @@ "priority": 0.8 }, "Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -34132,6 +37366,12 @@ "priority": 0.8 }, "Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -34240,6 +37480,12 @@ "priority": 0.8 }, "Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -34348,6 +37594,12 @@ "priority": 0.8 }, "Perf-Win2016-Clang-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -34458,6 +37710,12 @@ "priority": 0.8 }, "Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -34568,6 +37826,12 @@ "priority": 0.8 }, "Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-UBSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -34678,6 +37942,12 @@ "priority": 0.8 }, "Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -34788,6 +38058,12 @@ "priority": 0.8 }, "Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-UBSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -34898,6 +38174,12 @@ "priority": 0.8 }, "Perf-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -35008,6 +38290,12 @@ "priority": 0.8 }, "Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -35118,6 +38406,12 @@ "priority": 0.8 }, "Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -35228,6 +38522,12 @@ "priority": 0.8 }, "Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -35336,6 +38636,12 @@ "priority": 0.8 }, "Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -35444,6 +38750,12 @@ "priority": 0.8 }, "Perf-Win7-Clang-Golo-CPU-AVX-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -35552,6 +38864,12 @@ "priority": 0.8 }, "Perf-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -35660,6 +38978,12 @@ "priority": 0.8 }, "Perf-Win8-Clang-Golo-CPU-AVX-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -35768,6 +39092,12 @@ "priority": 0.8 }, "Perf-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -35876,6 +39206,12 @@ "priority": 0.8 }, "Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -35972,6 +39308,12 @@ "priority": 0.8 }, "Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -36068,6 +39410,12 @@ "priority": 0.8 }, "Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -36164,6 +39512,12 @@ "priority": 0.8 }, "Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -36260,6 +39614,12 @@ "priority": 0.8 }, "Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -36356,6 +39716,12 @@ "priority": 0.8 }, "Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -36452,6 +39818,12 @@ "priority": 0.8 }, "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -36549,6 +39921,12 @@ "priority": 0.8 }, "Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -36646,6 +40024,12 @@ "priority": 0.8 }, "Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -36743,6 +40127,12 @@ "priority": 0.8 }, "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -36840,6 +40230,12 @@ "priority": 0.8 }, "Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -36937,6 +40333,12 @@ "priority": 0.8 }, "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -37034,6 +40436,12 @@ "priority": 0.8 }, "Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -37131,6 +40539,12 @@ "priority": 0.8 }, "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -37228,6 +40642,12 @@ "priority": 0.8 }, "Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -37325,6 +40745,12 @@ "priority": 0.8 }, "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -37422,6 +40848,12 @@ "priority": 0.8 }, "Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -37519,6 +40951,12 @@ "priority": 0.8 }, "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -37616,6 +41054,12 @@ "priority": 0.8 }, "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -37713,6 +41157,12 @@ "priority": 0.8 }, "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -37810,6 +41260,12 @@ "priority": 0.8 }, "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -37907,6 +41363,12 @@ "priority": 0.8 }, "Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -38004,6 +41466,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5-CPU-Snapdragon800-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -38101,6 +41569,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5-CPU-Snapdragon800-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -38198,6 +41672,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -38295,6 +41775,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -38392,6 +41878,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-CPU-Snapdragon808-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -38489,6 +41981,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-CPU-Snapdragon808-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -38586,6 +42084,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-CPU-Snapdragon808-arm-Release-All-Android_ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -38684,6 +42188,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-CPU-Snapdragon808-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -38781,6 +42291,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-CPU-Snapdragon808-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -38878,6 +42394,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-CPU-Snapdragon808-arm64-Release-All-Android_ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -38976,6 +42498,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -39073,6 +42601,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Debug-All-Android_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -39170,6 +42704,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -39267,6 +42807,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Debug-All-Android_Vulkan_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -39364,6 +42910,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -39461,6 +43013,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android_ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -39559,6 +43117,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android_ASAN_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -39657,6 +43221,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -39754,6 +43324,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -39851,6 +43427,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android_Vulkan_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -39948,6 +43530,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -40045,6 +43633,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -40142,6 +43736,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -40239,6 +43839,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -40336,6 +43942,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -40433,6 +44045,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -40531,6 +44149,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_ASAN_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -40629,6 +44253,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -40726,6 +44356,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -40823,6 +44459,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -40920,6 +44562,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -41017,6 +44665,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus7-CPU-Tegra3-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -41114,6 +44768,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus7-CPU-Tegra3-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -41211,6 +44871,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -41308,6 +44974,12 @@ "priority": 0.8 }, "Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -41405,6 +45077,12 @@ "priority": 0.8 }, "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -41502,6 +45180,12 @@ "priority": 0.8 }, "Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -41599,6 +45283,12 @@ "priority": 0.8 }, "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -41696,6 +45386,12 @@ "priority": 0.8 }, "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -41793,6 +45489,12 @@ "priority": 0.8 }, "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -41890,6 +45592,12 @@ "priority": 0.8 }, "Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -41987,6 +45695,12 @@ "priority": 0.8 }, "Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -42084,6 +45798,12 @@ "priority": 0.8 }, "Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_CCPR": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -42181,6 +45901,12 @@ "priority": 0.8 }, "Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -42278,6 +46004,12 @@ "priority": 0.8 }, "Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -42375,6 +46107,12 @@ "priority": 0.8 }, "Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -42472,6 +46210,12 @@ "priority": 0.8 }, "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -42569,6 +46313,12 @@ "priority": 0.8 }, "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -42666,6 +46416,12 @@ "priority": 0.8 }, "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -42763,6 +46519,12 @@ "priority": 0.8 }, "Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -42860,6 +46622,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -42957,6 +46725,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -43054,6 +46828,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -43151,6 +46931,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -43248,6 +47034,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -43345,6 +47137,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -43442,6 +47240,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -43539,6 +47343,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -43636,6 +47446,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -43733,6 +47549,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -43830,6 +47652,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -43927,6 +47755,12 @@ "priority": 0.8 }, "Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -44024,6 +47858,12 @@ "priority": 0.8 }, "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -44119,6 +47959,12 @@ "priority": 0.8 }, "Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -44214,6 +48060,12 @@ "priority": 0.8 }, "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -44309,6 +48161,12 @@ "priority": 0.8 }, "Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -44404,6 +48262,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -44513,6 +48377,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -44622,6 +48492,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -44736,6 +48612,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -44850,6 +48732,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -44959,6 +48847,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -45068,6 +48962,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -45177,6 +49077,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SwiftShader": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -45286,6 +49192,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_00_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -45395,6 +49307,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_01_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -45504,6 +49422,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_02_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -45613,6 +49537,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_03_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -45722,6 +49652,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_04_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -45831,6 +49767,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_05_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -45940,6 +49882,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_06_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -46049,6 +49997,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_07_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -46158,6 +50112,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_08_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -46267,6 +50227,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_09_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -46376,6 +50342,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_10_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -46485,6 +50457,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_11_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -46594,6 +50572,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -46703,6 +50687,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -46817,6 +50807,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -46926,6 +50922,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SKNX_NO_SIMD": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -47035,6 +51037,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE2": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -47144,6 +51152,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE41": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -47253,6 +51267,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -47362,6 +51382,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SwiftShader": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -47471,6 +51497,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -47585,6 +51617,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -47694,6 +51732,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -47803,6 +51847,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -47916,6 +51966,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -48034,6 +52090,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -48147,6 +52209,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -48265,6 +52333,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -48378,6 +52452,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -48496,6 +52576,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -48609,6 +52695,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -48727,6 +52819,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -48840,6 +52938,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -48953,6 +53057,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -49066,6 +53176,12 @@ "priority": 0.8 }, "Test-Debian9-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -49179,6 +53295,12 @@ "priority": 0.8 }, "Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -49288,6 +53410,12 @@ "priority": 0.8 }, "Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -49397,6 +53525,12 @@ "priority": 0.8 }, "Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -49506,6 +53640,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -49614,6 +53754,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Debug-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -49722,6 +53868,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -49830,6 +53982,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -49938,6 +54096,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -50046,6 +54210,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Debug-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -50154,6 +54324,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -50262,6 +54438,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -50370,6 +54552,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -50478,6 +54666,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -50586,6 +54780,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -50694,6 +54894,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All-TSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -50802,6 +55008,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -50911,6 +55123,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -51020,6 +55238,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -51129,6 +55353,12 @@ "priority": 0.8 }, "Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-TSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -51238,6 +55468,24 @@ "priority": 0.8 }, "Test-Ubuntu14-Clang-GCE-CPU-AVX2-x86_64-Debug-All-CT_DM_100k_SKPs": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -51346,6 +55594,24 @@ "service_account": "skia-external-ct-skps@skia-swarming-bots.iam.gserviceaccount.com" }, "Test-Ubuntu14-Clang-GCE-CPU-AVX2-x86_64-Debug-All-CT_DM_1m_SKPs": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -51454,6 +55720,24 @@ "service_account": "skia-external-ct-skps@skia-swarming-bots.iam.gserviceaccount.com" }, "Test-Ubuntu14-Clang-GCE-CPU-AVX2-x86_64-Debug-All-CT_IMG_DECODE_100k_SKPs": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -51562,6 +55846,12 @@ "service_account": "skia-external-ct-skps@skia-swarming-bots.iam.gserviceaccount.com" }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -51670,6 +55960,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -51783,6 +56079,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL1": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -51891,6 +56193,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL1_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -52004,6 +56312,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL3": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -52112,6 +56426,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL3_ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -52225,6 +56545,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL3_ASAN_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -52343,6 +56669,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL3_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -52456,6 +56788,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -52569,6 +56907,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -52677,6 +57021,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-shard_00_01-Vulkan_Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -52790,6 +57140,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -52898,6 +57254,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -53011,6 +57373,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-DDL3_ASAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -53124,6 +57492,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-DDL3_ASAN_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -53242,6 +57616,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-DDL3_TSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -53355,6 +57735,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-DDL3_TSAN_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -53473,6 +57859,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-PreAbandonGpuContext": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -53581,6 +57973,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-TSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -53694,6 +58092,12 @@ "priority": 0.8 }, "Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -53807,6 +58211,12 @@ "priority": 0.8 }, "Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -53921,6 +58331,12 @@ "priority": 0.8 }, "Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_PreAbandonGpuContext_SK_CPU_LIMIT_SSE41": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -54035,6 +58451,12 @@ "priority": 0.8 }, "Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_SK_CPU_LIMIT_SSE41": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -54149,6 +58571,12 @@ "priority": 0.8 }, "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -54257,6 +58685,12 @@ "priority": 0.8 }, "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -54365,6 +58799,12 @@ "priority": 0.8 }, "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -54473,6 +58913,12 @@ "priority": 0.8 }, "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -54581,6 +59027,12 @@ "priority": 0.8 }, "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -54689,6 +59141,12 @@ "priority": 0.8 }, "Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -54797,6 +59255,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -54905,6 +59369,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -55013,6 +59483,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -55121,6 +59597,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -55229,6 +59711,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -55337,6 +59825,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -55445,6 +59939,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -55553,6 +60053,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan_ProcDump": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -55666,6 +60172,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -55774,6 +60286,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -55882,6 +60400,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ReleaseAndAbandonGpuContext": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -55990,6 +60514,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -56098,6 +60628,12 @@ "priority": 0.8 }, "Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_ProcDump": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -56211,6 +60747,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -56319,6 +60861,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -56427,6 +60975,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -56535,6 +61089,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -56643,6 +61203,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -56751,6 +61317,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -56859,6 +61431,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -56967,6 +61545,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -57075,6 +61659,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -57183,6 +61773,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -57291,6 +61887,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -57399,6 +62001,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -57507,6 +62115,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -57615,6 +62229,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -57723,6 +62343,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -57831,6 +62457,12 @@ "priority": 0.8 }, "Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -57939,6 +62571,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -58047,6 +62685,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -58155,6 +62799,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -58263,6 +62913,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -58371,6 +63027,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -58479,6 +63141,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -58587,6 +63255,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -58695,6 +63369,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -58803,6 +63483,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -58911,6 +63597,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -59019,6 +63711,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -59127,6 +63825,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -59235,6 +63939,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -59344,6 +64054,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -59453,6 +64169,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -59562,6 +64284,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -59671,6 +64399,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -59780,6 +64514,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -59889,6 +64629,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -59997,6 +64743,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -60105,6 +64857,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -60213,6 +64971,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -60321,6 +65085,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -60429,6 +65199,12 @@ "priority": 0.8 }, "Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -60537,6 +65313,12 @@ "priority": 0.8 }, "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -60645,6 +65427,12 @@ "priority": 0.8 }, "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -60753,6 +65541,12 @@ "priority": 0.8 }, "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -60861,6 +65655,12 @@ "priority": 0.8 }, "Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -60969,6 +65769,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -61079,6 +65885,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -61189,6 +66001,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -61299,6 +66117,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -61409,6 +66233,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -61519,6 +66349,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -61629,6 +66465,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-UBSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -61739,6 +66581,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -61849,6 +66697,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FAAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -61959,6 +66813,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FDAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -62069,6 +66929,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FSAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -62179,6 +67045,12 @@ "priority": 0.8 }, "Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-UBSAN": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -62289,6 +67161,12 @@ "priority": 0.8 }, "Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -62399,6 +67277,12 @@ "priority": 0.8 }, "Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -62509,6 +67393,12 @@ "priority": 0.8 }, "Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -62619,6 +67509,12 @@ "priority": 0.8 }, "Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -62729,6 +67625,12 @@ "priority": 0.8 }, "Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -62837,6 +67739,12 @@ "priority": 0.8 }, "Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -62945,6 +67853,12 @@ "priority": 0.8 }, "Test-Win7-Clang-Golo-CPU-AVX-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -63053,6 +67967,12 @@ "priority": 0.8 }, "Test-Win7-Clang-Golo-CPU-AVX-x86-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -63161,6 +68081,12 @@ "priority": 0.8 }, "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -63269,6 +68195,12 @@ "priority": 0.8 }, "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -63377,6 +68309,12 @@ "priority": 0.8 }, "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts_GDI": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -63485,6 +68423,12 @@ "priority": 0.8 }, "Test-Win7-Clang-Golo-CPU-AVX-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -63593,6 +68537,12 @@ "priority": 0.8 }, "Test-Win8-Clang-Golo-CPU-AVX-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -63701,6 +68651,12 @@ "priority": 0.8 }, "Test-Win8-Clang-Golo-CPU-AVX-x86-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -63809,6 +68765,12 @@ "priority": 0.8 }, "Test-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -63917,6 +68879,12 @@ "priority": 0.8 }, "Test-Win8-Clang-Golo-CPU-AVX-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -64025,6 +68993,12 @@ "priority": 0.8 }, "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -64121,6 +69095,12 @@ "priority": 0.8 }, "Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -64217,6 +69197,12 @@ "priority": 0.8 }, "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -64313,6 +69299,12 @@ "priority": 0.8 }, "Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -64409,6 +69401,12 @@ "priority": 0.8 }, "Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -64505,6 +69503,12 @@ "priority": 0.8 }, "Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -64601,6 +69605,12 @@ "priority": 0.8 }, "Upload-Build-Debian9-Clang-arm-Release-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -64682,14 +69692,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-binary-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Build-Debian9-Clang-arm64-Release-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -64771,14 +69789,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-binary-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Build-Debian9-Clang-x64-Release-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -64860,14 +69886,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-binary-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Build-Debian9-Clang-x86-Release-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -64949,14 +69983,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-binary-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -65043,14 +70085,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-calmbench-upload@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -65137,14 +70187,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-calmbench-upload@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -65231,14 +70289,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -65325,14 +70391,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -65419,14 +70493,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -65513,14 +70595,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -65607,14 +70697,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -65701,14 +70799,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -65795,14 +70901,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Nexus5-CPU-Snapdragon800-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -65889,14 +71003,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -65983,14 +71105,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Nexus5x-CPU-Snapdragon808-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -66077,14 +71207,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Nexus5x-CPU-Snapdragon808-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -66171,14 +71309,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -66265,14 +71411,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -66359,14 +71513,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -66453,14 +71615,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -66547,14 +71717,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Nexus7-CPU-Tegra3-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -66641,14 +71819,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -66735,14 +71921,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -66829,14 +72023,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -66923,14 +72125,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -67017,14 +72227,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -67111,14 +72329,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -67205,14 +72431,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -67299,14 +72533,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -67393,14 +72635,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -67487,14 +72737,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -67581,14 +72839,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_CCPR_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -67675,14 +72941,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -67769,14 +73043,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -67863,14 +73145,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -67957,14 +73247,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -68051,14 +73349,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -68145,14 +73451,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -68239,14 +73553,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -68333,14 +73655,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -68427,14 +73757,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -68521,14 +73859,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -68615,14 +73961,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -68709,14 +74063,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -68803,14 +74165,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -68897,14 +74267,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -68991,14 +74369,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -69085,14 +74471,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -69179,14 +74573,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -69273,14 +74675,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -69367,14 +74777,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Debian9-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -69461,14 +74879,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Debian9-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -69555,14 +74981,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -69649,14 +75083,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -69743,14 +75185,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -69837,14 +75287,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -69931,14 +75389,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Release-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -70025,14 +75491,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -70119,14 +75593,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -70213,14 +75695,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -70307,14 +75797,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -70401,14 +75899,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -70495,14 +76001,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -70589,14 +76103,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -70683,14 +76205,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -70777,14 +76307,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -70871,14 +76409,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -70965,14 +76511,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -71059,14 +76613,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -71153,14 +76715,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -71247,14 +76817,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -71341,14 +76919,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -71435,14 +77021,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -71529,14 +77123,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -71623,14 +77225,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -71717,14 +77327,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -71811,14 +77429,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -71905,14 +77531,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -71999,14 +77633,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -72093,14 +77735,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -72187,14 +77837,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -72281,14 +77939,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -72375,14 +78041,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -72469,14 +78143,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -72563,14 +78245,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -72657,14 +78347,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -72751,14 +78449,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -72845,14 +78551,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -72939,14 +78653,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -73033,14 +78755,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -73127,14 +78857,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -73221,14 +78959,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -73315,14 +79061,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -73409,14 +79163,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -73503,14 +79265,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -73597,14 +79367,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -73691,14 +79469,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Perf-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -73785,14 +79571,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-nano-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -73879,14 +79673,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -73973,14 +79775,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-GalaxyS6-CPU-Exynos7420-arm64-Debug-All-Android_NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -74067,14 +79877,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -74161,14 +79979,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -74255,14 +80081,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -74349,14 +80183,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -74443,14 +80285,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -74537,14 +80387,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -74631,14 +80489,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -74725,14 +80591,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-MotoG4-GPU-Adreno405-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -74819,14 +80693,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -74913,14 +80795,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -75007,14 +80897,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -75101,14 +80999,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -75195,14 +81101,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -75289,14 +81203,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5-CPU-Snapdragon800-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -75383,14 +81305,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5-CPU-Snapdragon800-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -75477,14 +81407,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -75571,14 +81509,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -75665,14 +81611,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-CPU-Snapdragon808-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -75759,14 +81713,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-CPU-Snapdragon808-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -75853,14 +81815,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-CPU-Snapdragon808-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -75947,14 +81917,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-CPU-Snapdragon808-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -76041,14 +82019,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -76135,14 +82121,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Debug-All-Android_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -76229,14 +82223,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -76323,14 +82325,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Debug-All-Android_Vulkan_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -76417,14 +82427,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -76511,14 +82529,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -76605,14 +82631,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -76699,14 +82733,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Release-All-Android_Vulkan_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -76793,14 +82835,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -76887,14 +82937,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -76981,14 +83039,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -77075,14 +83141,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_Vulkan_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -77169,14 +83243,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -77263,14 +83345,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -77357,14 +83447,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -77451,14 +83549,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -77545,14 +83651,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_Vulkan_NoGPUThreads": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -77639,14 +83753,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus7-CPU-Tegra3-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -77733,14 +83855,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus7-CPU-Tegra3-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -77827,14 +83957,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -77921,14 +84059,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -78015,14 +84161,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -78109,14 +84263,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -78203,14 +84365,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -78297,14 +84467,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -78391,14 +84569,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -78485,14 +84671,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -78579,14 +84773,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -78673,14 +84875,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_CCPR": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -78767,14 +84977,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -78861,14 +85079,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -78955,14 +85181,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -79049,14 +85283,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -79143,14 +85385,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -79237,14 +85487,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -79331,14 +85589,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -79425,14 +85691,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -79519,14 +85793,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -79613,14 +85895,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -79707,14 +85997,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-AcerChromebook13_CB5_311-GPU-TegraK1-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -79801,14 +86099,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -79895,14 +86201,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -79989,14 +86303,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -80083,14 +86405,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-Pixelbook-GPU-IntelHDGraphics615-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -80177,14 +86507,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -80271,14 +86609,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-SamsungChromebook2012-GPU-MaliT604-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -80365,14 +86711,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -80459,14 +86813,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -80553,14 +86915,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -80647,14 +87017,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -80741,14 +87119,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -80835,14 +87221,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -80929,14 +87323,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -81023,14 +87425,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -81117,14 +87527,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -81211,14 +87629,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -81305,14 +87731,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -81399,14 +87833,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SwiftShader": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -81493,14 +87935,34 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-Shard_12-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -81634,14 +88096,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-coverage-uploade@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -81728,14 +88198,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Fast": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -81822,14 +88300,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SKNX_NO_SIMD": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -81916,14 +88402,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE2": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -82010,14 +88504,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_CPU_LIMIT_SSE41": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -82104,14 +88606,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -82198,14 +88708,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SwiftShader": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -82292,14 +88810,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -82386,14 +88912,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-GCE-CPU-AVX512-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -82480,14 +89014,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -82574,14 +89116,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -82668,14 +89218,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -82762,14 +89320,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -82856,14 +89422,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -82950,14 +89524,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -83044,14 +89626,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -83138,14 +89728,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -83232,14 +89830,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -83326,14 +89932,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -83420,14 +90034,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -83514,14 +90136,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-Clang-ShuttleA-GPU-IntelHD2000-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -83608,14 +90238,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -83702,14 +90340,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -83796,14 +90442,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -83890,14 +90544,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -83984,14 +90646,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Debug-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -84078,14 +90748,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -84172,14 +90850,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -84266,14 +90952,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -84360,14 +91054,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Debug-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -84454,14 +91156,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -84548,14 +91258,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -84642,14 +91360,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Debug-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -84736,14 +91462,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -84830,14 +91564,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -84924,14 +91666,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -85018,14 +91768,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -85112,14 +91870,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -85206,14 +91972,34 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -85336,14 +92122,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-coverage-uploade@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL1": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -85430,14 +92224,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL1_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -85524,14 +92326,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL3": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -85618,14 +92428,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL3_Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -85712,14 +92530,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -85806,14 +92632,34 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan_Coverage": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + }, + { + "name": "git", + "path": "cache/git" + }, + { + "name": "git_cache", + "path": "cache/git_cache" + }, + { + "name": "work", + "path": "cache/work" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -85941,14 +92787,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-coverage-uploade@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -86035,14 +92889,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -86129,14 +92991,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -86223,14 +93093,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -86317,14 +93195,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -86411,14 +93297,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -86505,14 +93399,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -86599,14 +93501,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -86693,14 +93603,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -86787,14 +93705,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -86881,14 +93807,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -86975,14 +93909,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-GT610-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -87069,14 +94011,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -87163,14 +94113,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -87257,14 +94215,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -87351,14 +94317,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan_ProcDump": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -87445,14 +94419,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -87539,14 +94521,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -87633,14 +94623,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -87727,14 +94725,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_ProcDump": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -87821,14 +94827,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -87915,14 +94929,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -88009,14 +95031,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -88103,14 +95133,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -88197,14 +95235,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -88291,14 +95337,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -88385,14 +95439,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -88479,14 +95541,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -88573,14 +95643,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -88667,14 +95745,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -88761,14 +95847,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -88855,14 +95949,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -88949,14 +96051,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -89043,14 +96153,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -89137,14 +96255,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -89231,14 +96357,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -89325,14 +96459,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -89419,14 +96561,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -89513,14 +96663,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -89607,14 +96765,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -89701,14 +96867,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -89795,14 +96969,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -89889,14 +97071,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -89983,14 +97173,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -90077,14 +97275,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -90171,14 +97377,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -90265,14 +97479,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -90359,14 +97581,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleA-GPU-RadeonHD7770-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -90453,14 +97683,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -90547,14 +97785,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -90641,14 +97887,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -90735,14 +97989,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -90829,14 +98091,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -90923,14 +98193,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -91017,14 +98295,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -91111,14 +98397,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -91205,14 +98499,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -91299,14 +98601,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -91393,14 +98703,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-ANGLE": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -91487,14 +98805,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -91581,14 +98907,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -91675,14 +99009,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -91769,14 +99111,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -91863,14 +99213,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win10-MSVC-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -91957,14 +99315,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -92051,14 +99417,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -92145,14 +99519,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -92239,14 +99621,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -92333,14 +99723,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -92427,14 +99825,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -92521,14 +99927,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -92615,14 +100029,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FAAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -92709,14 +100131,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FDAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -92803,14 +100233,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Release-All-FSAA": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -92897,14 +100335,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -92991,14 +100437,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -93085,14 +100539,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -93179,14 +100641,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -93273,14 +100743,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -93367,14 +100845,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win2k8-Clang-Golo-GPU-QuadroP400-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -93461,14 +100947,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -93555,14 +101049,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -93649,14 +101151,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -93743,14 +101253,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -93837,14 +101355,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Debug-All-NativeFonts_GDI": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -93931,14 +101457,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win7-Clang-Golo-CPU-AVX-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -94025,14 +101559,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win8-Clang-Golo-CPU-AVX-x86-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -94119,14 +101661,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win8-Clang-Golo-CPU-AVX-x86-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -94213,14 +101763,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win8-Clang-Golo-CPU-AVX-x86_64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -94307,14 +101865,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-Win8-Clang-Golo-CPU-AVX-x86_64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -94401,14 +101967,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -94495,14 +102069,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -94589,14 +102171,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -94683,14 +102273,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-iOS-Clang-iPhone6-GPU-GX6450-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -94777,14 +102375,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Debug-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -94871,14 +102477,22 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" }, "Upload-Test-iOS-Clang-iPhone7-GPU-GT7600-arm64-Release-All": { + "caches": [ + { + "name": "vpython", + "path": "cache/vpython" + } + ], "cipd_packages": [ { "name": "infra/tools/luci/kitchen/${platform}", @@ -94965,9 +102579,11 @@ "${cache_dir}/vpython" ] }, + "execution_timeout_ns": 3600000000000, "extra_tags": { "log_location": "logdog://logs.chromium.org/skia/<(TASK_ID)/+/annotations" }, + "io_timeout_ns": 3600000000000, "isolate": "swarm_recipe.isolate", "priority": 0.8, "service_account": "skia-external-gm-uploader@skia-swarming-bots.iam.gserviceaccount.com" |