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

Unified Diff: scripts/slave/bot_update.py

Issue 420603015: Enable bot_update for chromium codesearch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 years, 5 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 | « scripts/master/factory/chromium_factory.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/bot_update.py
diff --git a/scripts/slave/bot_update.py b/scripts/slave/bot_update.py
index 0290236a48234ef1c1a333a76b60793b78169ffc..353b8dda1811fa60185aabcda184128a89fc8f08 100755
--- a/scripts/slave/bot_update.py
+++ b/scripts/slave/bot_update.py
@@ -262,8 +262,6 @@ ENABLED_SLAVES.update(internal_data.get('ENABLED_SLAVES', {}))
# be disabled.
DISABLED_BUILDERS = {
'chromium.fyi': [
- 'Chromium Linux Codesearch',
- 'ChromiumOS Codesearch',
# ClusterFuzz relies on svn revisions to do bisection checks.
# crbug.com/377963
'Win SyzyASAN LKGR',
@@ -568,6 +566,8 @@ def solutions_to_git(input_solutions):
solution['deps_file'] = path.join('build', buildspec_name, '.DEPS.git')
elif parsed_path in RECOGNIZED_PATHS:
solution['url'] = RECOGNIZED_PATHS[parsed_path]
+ elif parsed_url.scheme == 'https' and 'googlesource' in parsed_url.netloc:
zty 2014/07/29 18:05:05 What is this for?
Ryan Tseng 2014/07/29 18:16:55 So there are 4 conditions: 1. If the url is a buil
+ pass
else:
warnings.append('path %r not recognized' % parsed_path)
print 'Warning: %s' % (warnings[-1],)
« no previous file with comments | « scripts/master/factory/chromium_factory.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698