| Index: client/tools/buildbot_annotated_steps.py
|
| diff --git a/client/tools/buildbot_annotated_steps.py b/client/tools/buildbot_annotated_steps.py
|
| index 9dacc5ad4cad15083c632107b4c11f864b07f6b5..7363364af71e7439d18c7aab43f01c126dc06f8f 100755
|
| --- a/client/tools/buildbot_annotated_steps.py
|
| +++ b/client/tools/buildbot_annotated_steps.py
|
| @@ -186,17 +186,8 @@ def main():
|
| # root directory, set JAVA_HOME based on that.
|
| FixJavaHome()
|
| if name.startswith('dart-editor'):
|
| - # TODO(kustermann,ricow): This is a temporary hack until we can safely
|
| - # enable it on main waterfall. We need to remove this eventually
|
| - if name.startswith('dart-editor-fyi'):
|
| - match = re.search('dart-editor-fyi(.*)', name)
|
| - name = 'dart-editor' + match.group(1)
|
| - # In case we're an FYI builder, run 'tools/bots/editor.py'.
|
| - status = ProcessBot(name, 'editor',
|
| - custom_env=EnvironmentWithoutBotoConfig())
|
| - else:
|
| - # Run the old annotated steps script
|
| - status = ProcessTools('release', name, version)
|
| + # Run the old annotated steps script
|
| + status = ProcessTools('release', name, version)
|
| elif name.startswith('pub-'):
|
| status = ProcessBot(name, 'pub')
|
| elif name.startswith('vm-android'):
|
|
|