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

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: Rebase 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 cfdba65fcb702817e8fc0cbdd9945e696fa2941d..140ace543ac44027a72cd977d03e83e62a0e1227 100755
--- a/scripts/slave/bot_update.py
+++ b/scripts/slave/bot_update.py
@@ -236,7 +236,6 @@ ENABLED_SLAVES.update(internal_data.get('ENABLED_SLAVES', {}))
# be disabled.
DISABLED_BUILDERS = {
'chromium.fyi': [
- 'Chromium Linux Codesearch',
'ChromiumOS Codesearch',
],
'chromium.webkit': [
@@ -534,6 +533,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:
+ 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