Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Unified Diff: appengine/findit/waterfall/waterfall_config.py

Issue 1799313002: [Findit] Collect failed output nodes of compile and link failures by strict regex (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Support Android besides Mac/Linux/CrOS Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/findit/waterfall/try_job_util.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/waterfall/waterfall_config.py
diff --git a/appengine/findit/waterfall/waterfall_config.py b/appengine/findit/waterfall/waterfall_config.py
index 0e46f11204d9104d4e6ad6c3ba2197b8a3132555..6fb5ee1fe7da166c8ba54242b31873326e02809b 100644
--- a/appengine/findit/waterfall/waterfall_config.py
+++ b/appengine/findit/waterfall/waterfall_config.py
@@ -130,6 +130,13 @@ def GetTrybotForWaterfallBuilder(wf_mastername, wf_buildername):
return trybot_config.get('mastername'), trybot_config.get('buildername')
+def EnableStrictRegexForCompileLinkFailures(wf_mastername, wf_buildername):
+ """Returns True if strict regex should be used for the given builder."""
+ trybot_config = FinditConfig.Get().builders_to_trybots.get(
+ wf_mastername, {}).get(wf_buildername, {})
+ return trybot_config.get('strict_regex', False)
+
+
def GetTryJobSettings():
return FinditConfig().Get().try_job_settings
« no previous file with comments | « appengine/findit/waterfall/try_job_util.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698