aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipe_modules
diff options
context:
space:
mode:
authorGravatar borenet <borenet@chromium.org>2016-10-05 06:00:26 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-10-05 06:00:26 -0700
commit93408df16e742f4e4cf0338beb189dca78196992 (patch)
treee1689838d9aab68fa8973b59de69e0652137047e /infra/bots/recipe_modules
parente47ae2998c1cf944db5743a416583dd0f042b6d9 (diff)
Add swarm_presubmit recipe
This allows us to add a Housekeeper-PerCommit-Presubmit bot/trybot BUG=skia:5823 GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2392663004 Review-Url: https://codereview.chromium.org/2392663004
Diffstat (limited to 'infra/bots/recipe_modules')
-rw-r--r--infra/bots/recipe_modules/vars/api.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/infra/bots/recipe_modules/vars/api.py b/infra/bots/recipe_modules/vars/api.py
index f593ff1bef..84e6d090ed 100644
--- a/infra/bots/recipe_modules/vars/api.py
+++ b/infra/bots/recipe_modules/vars/api.py
@@ -48,7 +48,8 @@ class SkiaVarsApi(recipe_api.RecipeApi):
# Compile bots keep a persistent checkout.
self.persistent_checkout = (self.is_compile_bot or
'RecreateSKPs' in self.builder_name or
- '-CT_' in self.builder_name)
+ '-CT_' in self.builder_name or
+ 'Presubmit' in self.builder_name)
if self.persistent_checkout:
if 'Win' in self.builder_name:
self.checkout_root = self.make_path('C:\\', 'b', 'work')