| Index: tools/dartium/buildbot_annotated_steps.py
|
| diff --git a/tools/dartium/buildbot_annotated_steps.py b/tools/dartium/buildbot_annotated_steps.py
|
| index aeaed2f3495c9a75b7c2913ddfeb3f369911f31d..fc78e574f3c3c92bf1c7c487f5e9f4cece284219 100755
|
| --- a/tools/dartium/buildbot_annotated_steps.py
|
| +++ b/tools/dartium/buildbot_annotated_steps.py
|
| @@ -90,13 +90,12 @@ def main():
|
|
|
| result = 0
|
|
|
| - # Archive to the revision bucket unless integration build
|
| - if info.channel != 'integration':
|
| - result = upload_steps.ArchiveAndUpload(info, archive_latest=False)
|
| - # On dev/stable we archive to the latest bucket as well
|
| - if info.channel != 'be':
|
| - result = (upload_steps.ArchiveAndUpload(info, archive_latest=True)
|
| - or result)
|
| + # Archive to the revision bucket
|
| + result = upload_steps.ArchiveAndUpload(info, archive_latest=False)
|
| + # On dev/stable we archive to the latest bucket as well
|
| + if info.channel != 'be':
|
| + result = (upload_steps.ArchiveAndUpload(info, archive_latest=True)
|
| + or result)
|
|
|
| # Run layout tests
|
| if info.mode == 'Release' or platform.system() != 'Darwin':
|
|
|