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

Unified Diff: tools/dartium/buildbot_annotated_steps.py

Issue 2875773003: Roll 50: Updated for push to origin/master. (Closed)
Patch Set: Roll 50: Updated to latest Created 3 years, 7 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
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':

Powered by Google App Engine
This is Rietveld 408576698