diff options
author | Ravi Mistry <rmistry@google.com> | 2017-10-16 10:31:41 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-10-16 14:40:14 +0000 |
commit | f06dae824b85396bae17e8b5cb94c448ec617ae4 (patch) | |
tree | a34aee109ffd9794c9f4cfb187a5e49786a03be0 | |
parent | 71ff4b94e5538ef3c1e87c1b1b5da447fc8b50e3 (diff) |
Stop CT_DM_1m bot from triggering on every commit
NoTry: true
Bug: skia:
Change-Id: I2d8039ad4105234f1079dd48a9d0fc0047eec9c6
Reviewed-on: https://skia-review.googlesource.com/60080
Commit-Queue: Ravi Mistry <rmistry@google.com>
Reviewed-by: Kevin Lubick <kjlubick@google.com>
-rw-r--r-- | infra/bots/gen_tasks.go | 2 | ||||
-rw-r--r-- | infra/bots/tasks.json | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/infra/bots/gen_tasks.go b/infra/bots/gen_tasks.go index c15c31c017..d496cbeb35 100644 --- a/infra/bots/gen_tasks.go +++ b/infra/bots/gen_tasks.go @@ -1012,7 +1012,7 @@ func process(b *specs.TasksCfgBuilder, name string) { } if strings.Contains(name, "-Nightly-") { j.Trigger = specs.TRIGGER_NIGHTLY - } else if strings.Contains(name, "-Weekly-") || name == "Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs" { + } else if strings.Contains(name, "-Weekly-") || strings.Contains(name, "CT_DM_1m_SKPs") { j.Trigger = specs.TRIGGER_WEEKLY } else if strings.Contains(name, "Flutter") || strings.Contains(name, "PDFium") || strings.Contains(name, "CommandBuffer") { j.Trigger = specs.TRIGGER_MASTER_ONLY diff --git a/infra/bots/tasks.json b/infra/bots/tasks.json index d1b22c0497..923c69c97f 100644 --- a/infra/bots/tasks.json +++ b/infra/bots/tasks.json @@ -2156,7 +2156,8 @@ "priority": 0.8, "tasks": [ "Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_DM_1m_SKPs" - ] + ], + "trigger": "weekly" }, "Test-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Debug-All-CT_IMG_DECODE_100k_SKPs": { "priority": 0.8, |