Chromium Code Reviews| 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],) |