Bug 1323483 - Remove buildbot routes from mozharness; r?rail draft
authorMike Shal <mshal@mozilla.com>
Sat, 10 Dec 2016 12:34:43 -0500
changeset 449604 fda224b13d2b0e873c1ff30993288f5a5fd37bde
parent 448570 c51e7406d7b2e2246a1ece0d8989282ca752039f
child 539533 14003b68b5fae79dae9ea9f03081e56215c2e438
push id38615
push userbmo:mshal@mozilla.com
push dateWed, 14 Dec 2016 17:14:39 +0000
reviewersrail
bugs1323483, 1279221
milestone53.0a1
Bug 1323483 - Remove buildbot routes from mozharness; r?rail We removed buildbot routes from Taskcluster builds in bug 1279221, but I forgot to remove the equivalent routes in buildbot+mozharness builds. MozReview-Commit-ID: 993z3gAnxTh
testing/mozharness/mozharness/mozilla/building/buildbase.py
--- a/testing/mozharness/mozharness/mozilla/building/buildbase.py
+++ b/testing/mozharness/mozharness/mozilla/building/buildbase.py
@@ -1412,21 +1412,16 @@ or run without that action (ie: --no-{ac
             client_id=self.client_id,
             access_token=self.access_token,
             log_obj=self.log_obj,
             # `upload_to_task_id` is used by mozci to have access to where the artifacts
             # will be uploaded
             task_id=self.buildbot_config['properties'].get('upload_to_task_id'),
         )
 
-        # TODO: Bug 1165980 - these should be in tree
-        routes.extend([
-            "%s.buildbot.branches.%s.%s" % (index, self.branch, self.stage_platform),
-            "%s.buildbot.revisions.%s.%s.%s" % (index, revision, self.branch, self.stage_platform),
-        ])
         task = tc.create_task(routes)
         tc.claim_task(task)
 
         # Only those files uploaded with valid extensions are processed.
         # This ensures that we get the correct packageUrl from the list.
         valid_extensions = (
             '.apk',
             '.dmg',