Bug 1055919 - desktop mozharness mach builders should ride the trains, r=bhearsum
authorJordan Lund <jlund@mozilla.com>
Wed, 21 Jan 2015 13:29:55 -0800 (2015-01-21)
changeset 11696 d5682b589c5d61e93490e950c3d508993cfb3d3b
parent 11695 21f89a9f68eadc307965019a85409a74d1b243b7
child 11697 bc5ed0cf1f7416ef0f0873e9542f3a41f755498e
child 11698 2232ba781e1e91eeb466f407dbb91edb9ef42216
push id8506
push userjlund@mozilla.com
push dateWed, 21 Jan 2015 21:30:21 +0000 (2015-01-21)
reviewersbhearsum
bugs1055919
Bug 1055919 - desktop mozharness mach builders should ride the trains, r=bhearsum
mozilla/config.py
--- a/mozilla/config.py
+++ b/mozilla/config.py
@@ -2931,17 +2931,17 @@ for name, branch in items_at_least(BRANC
 # B2G's INBOUND
 for b in ('b2g-inbound',):
     for p in BRANCHES[b]['platforms'].keys():
         if 'linux' not in p:
             BRANCHES[b]['platforms'][p]['enable_checktests'] = False
 # END B2G's INBOUND
 
 # enable mozharness desktop builds across m-c and related branches
-for name, branch in items_at_least(BRANCHES, 'gecko_version', mc_gecko_version):
+for name, branch in items_at_least(BRANCHES, 'gecko_version', 37):
     # if true, any platform with mozharness_desktop_build in its config
     # will use mozharness instead of MozillaBuildFactory
     branch['desktop_mozharness_builds_enabled'] = True
 
 # disable win64 for gecko < 36
 for name, branch in items_before(BRANCHES, 'gecko_version', 36):
     for p in ('win64', 'win64-debug'):
         if p in branch['platforms']: