diff options
author | Eric Boren <borenet@google.com> | 2017-07-28 07:35:28 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-07-28 12:20:47 +0000 |
commit | f7928b4f33b5e899b4ac543d8d850523cbd1d6da (patch) | |
tree | e9c86d1cd32f204e02d8302d2571570db62ddc2f /infra/bots/recipe_modules/vars | |
parent | 3f6f965a5a65415c65fe9e64eb41896c66da771d (diff) |
Add a bot to verify that generated SKSL files have not been hand-edited
Bug: skia:6893
Change-Id: I54480ddd1ad1989661393500044f9164a99ce7b0
Reviewed-on: https://skia-review.googlesource.com/27700
Reviewed-by: Ravi Mistry <rmistry@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
Diffstat (limited to 'infra/bots/recipe_modules/vars')
-rw-r--r-- | infra/bots/recipe_modules/vars/api.py | 3 |
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 da11651802..b5f39834f4 100644 --- a/infra/bots/recipe_modules/vars/api.py +++ b/infra/bots/recipe_modules/vars/api.py @@ -44,7 +44,8 @@ class SkiaVarsApi(recipe_api.RecipeApi): '-CT_' in self.builder_name or 'Presubmit' in self.builder_name or 'InfraTests' in self.builder_name or - self.builder_name == "Housekeeper-PerCommit") + self.builder_name == "Housekeeper-PerCommit" or + 'CheckGeneratedFiles' in self.builder_name) if self.persistent_checkout: if 'Win' in self.builder_name: self.checkout_root = self.make_path('C:\\', 'b', 'work') |