aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar Ben Wagner <benjaminwagner@google.com>2017-06-12 13:03:29 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-06-12 17:32:58 +0000
commit50b84682c897093d35f9ce5d351574a65d3a8219 (patch)
treebe2c62f00089a415e003d27782a4eb2f0e453b7e /infra
parent6f9cd0a294f139f8733d1e1a3590770f5dc25ffe (diff)
[infra] Isolate tasks don't need compile task.
No-Try: true Change-Id: I4372c50b183d040e5145ac3ca665cd813da6256a Reviewed-on: https://skia-review.googlesource.com/19497 Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Ben Wagner <benjaminwagner@google.com>
Diffstat (limited to 'infra')
-rw-r--r--infra/bots/gen_tasks.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/infra/bots/gen_tasks.go b/infra/bots/gen_tasks.go
index e68101a0d6..95fff17d34 100644
--- a/infra/bots/gen_tasks.go
+++ b/infra/bots/gen_tasks.go
@@ -759,7 +759,8 @@ func process(b *specs.TasksCfgBuilder, name string) {
name != "Housekeeper-PerCommit-InfraTests" &&
!strings.Contains(name, "RecreateSKPs") &&
!strings.Contains(name, "UpdateMetaConfig") &&
- !strings.Contains(name, "-CT_") {
+ !strings.Contains(name, "-CT_") &&
+ !strings.Contains(name, "Housekeeper-PerCommit-Isolate") {
compile(b, compileTaskName, compileTaskParts)
}