diff options
author | Eric Boren <borenet@google.com> | 2017-04-10 11:00:09 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-04-10 15:46:47 +0000 |
commit | b8ab7f7634fc986962fdcdb70c7037a9d5b2ca9c (patch) | |
tree | 2877d2c9fd62924fc566f3c978f509ea2689ebe0 | |
parent | 7b4202de0e818024fb5c5d9535ebbacec0e186c1 (diff) |
Fix BundleRecipes depending on Release-Shared build
It doesn't create an actual dependency, but it does cause the
Release-Shared build to be added to the tasks DAG, where it would be
orphaned if not for the other housekeeper.
Bug: skia:
Change-Id: Ia2974728ec353c7f209db45474e572d83cacbda5
Reviewed-on: https://skia-review.googlesource.com/13003
Reviewed-by: Ravi Mistry <rmistry@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
-rw-r--r-- | infra/bots/gen_tasks.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/infra/bots/gen_tasks.go b/infra/bots/gen_tasks.go index 38cc6aca31..07eea947ff 100644 --- a/infra/bots/gen_tasks.go +++ b/infra/bots/gen_tasks.go @@ -621,6 +621,7 @@ func process(b *specs.TasksCfgBuilder, name string) { } // These bots do not need a compile task. if parts["role"] != "Build" && + name != "Housekeeper-PerCommit-BundleRecipes" && name != "Housekeeper-PerCommit-InfraTests" && !strings.Contains(name, "RecreateSKPs") && !strings.Contains(name, "-CT_") { |