Don't run the old annotated step script on our dart-editor-fyi-* builders

Review URL: https://codereview.chromium.org//13461007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@20800 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
kustermann@google.com 2013-04-02 16:51:41 +00:00
parent 6fad216eb7
commit 5054acf8c4

View file

@ -203,16 +203,14 @@ def main():
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
is_fyi = False
if name.startswith('dart-editor-fyi'):
match = re.search('dart-editor-fyi(.*)', name)
name = 'dart-editor' + match.group(1)
is_fyi = True
# Run the old annotated steps script first.
status = ProcessTools('release', name, version)
# In case we're an FYI builder, run 'tools/bots/editor.py' as well
if is_fyi:
status = ProcessBot(name, 'editor') or status
# In case we're an FYI builder, run 'tools/bots/editor.py'.
status = ProcessBot(name, 'editor')
else:
# Run the old annotated steps script
status = ProcessTools('release', name, version)
elif name.startswith('pub-'):
status = ProcessBot(name, 'pub')
elif name.startswith('vm-android'):