Bug 1143766: Disable emulator jb/kk/l builds on trunk r=rail
--- a/mozilla/b2g_config.py
+++ b/mozilla/b2g_config.py
@@ -2051,16 +2051,25 @@ for name, branch in items_before(BRANCHE
del branch['platforms'][p]
# b2g 2.2+
for name, branch in items_before(BRANCHES, 'gecko_version', 37):
for p in ('emulator-l', 'emulator-l-debug'):
if p in branch['platforms']:
del branch['platforms'][p]
+# Disable emulators for gecko 39 and higher, they're now in TC
+# See bug 1143766
+for name, branch in items_at_least(BRANCHES, 'gecko_version', 39):
+ for p in ('emulator-l', 'emulator-kk', 'emulator-jb',
+ 'emulator-l-debug', 'emulator-kk-debug', 'emulator-jb-debug'):
+ if p in branch['platforms']:
+ del branch['platforms'][p]
+
+
# Enable mozharness pinning
for name, branch in items_at_least(BRANCHES, 'gecko_version', 38):
if name in ('ash', 'try', 'fx-team', 'mozilla-central', 'b2g-inbound'):
branch['script_repo_manifest'] = \
"https://hg.mozilla.org/%(repo_path)s/raw-file/%(revision)s/" + \
"testing/mozharness/mozharness.json"
# Enable mozharness desktop builds