Mark several repositories as obsolete (bug 1299011) r?gps draft
authorWes Kocher <wkocher@mozilla.com>
Mon, 29 Aug 2016 18:12:35 -0700
changeset 9377 229e8afb8ab99f69bca782e9b09f4c776300b887
parent 9365 a1d6b78f698b840d5744ef43050cbee8e85afb18
push id1171
push userkwierso@gmail.com
push dateTue, 30 Aug 2016 01:12:44 +0000
reviewersgps
bugs1299011
Mark several repositories as obsolete (bug 1299011) r?gps MozReview-Commit-ID: 3x2o31e4SEu
pylib/mozautomation/mozautomation/repository.py
--- a/pylib/mozautomation/mozautomation/repository.py
+++ b/pylib/mozautomation/mozautomation/repository.py
@@ -39,23 +39,23 @@ TREE_ALIASES = {
     'cc': ('comm',),
     'c-a': ('comm-aurora',),
     'ca': ('comm-aurora',),
     'c-b': ('comm-beta',),
     'cb': ('comm-beta',),
     'c-r': ('comm-release',),
     'cr': ('comm-release',),
 
-    'releases': ('esr38', 'esr45', 'b2g34', 'b2g37', 'b2g44', 'b2g-ota',
-                 'release', 'beta', 'aurora', 'central'),
-    'integration': ('inbound', 'fx-team', 'b2ginbound', 'autoland'),
+    'releases': ('esr45', 'release', 'beta', 'aurora', 'central'),
+    'integration': ('inbound', 'fx-team', 'autoland'),
     'twigs': ('alder', 'ash', 'birch', 'cedar', 'cypress', 'date', 'elm',
               'fig', 'gum', 'holly', 'jamun', 'larch', 'maple', 'oak', 'pine'),
-    'obsolete': ('esr10', 'esr17', 'b2g18', 'esr24', 'b2g26', 'b2g28',
-                 'b2g30', 'esr31', 'b2g32'),
+    'obsolete': ('esr10', 'esr17', 'b2ginbound', 'b2g18', 'esr24', 'esr31',
+                 'esr38', 'b2g26', 'b2g28', 'b2g30', 'b2g32', 'b2g34', 'b2g37',
+                 'b2g44', 'b2g-ota'),
 }
 
 # Aliases that map to multiple repositories.
 MULTI_TREE_ALIASES = {}
 for tree, aliases in TREE_ALIASES.items():
     if len(aliases) > 1:
         MULTI_TREE_ALIASES[tree] = aliases