Bug 1054157, turn off tests on release automation builds, r=bhearsum
--- a/mozilla-tests/config.py
+++ b/mozilla-tests/config.py
@@ -1734,31 +1734,28 @@ for branch in BRANCHES.keys():
######## mozilla-central
BRANCHES['mozilla-central']['branch_name'] = "Firefox"
BRANCHES['mozilla-central']['repo_path'] = "mozilla-central"
BRANCHES['mozilla-central']['build_branch'] = "1.9.2"
BRANCHES['mozilla-central']['pgo_strategy'] = 'periodic'
######### mozilla-release
-BRANCHES['mozilla-release']['release_tests'] = 1
BRANCHES['mozilla-release']['repo_path'] = "releases/mozilla-release"
BRANCHES['mozilla-release']['pgo_strategy'] = 'per-checkin'
######### mozilla-beta
-BRANCHES['mozilla-beta']['release_tests'] = 1
BRANCHES['mozilla-beta']['repo_path'] = "releases/mozilla-beta"
BRANCHES['mozilla-beta']['pgo_strategy'] = 'per-checkin'
######### mozilla-aurora
BRANCHES['mozilla-aurora']['repo_path'] = "releases/mozilla-aurora"
BRANCHES['mozilla-aurora']['pgo_strategy'] = 'per-checkin'
######### mozilla-esr31
-BRANCHES['mozilla-esr31']['release_tests'] = 1
BRANCHES['mozilla-esr31']['repo_path'] = "releases/mozilla-esr31"
BRANCHES['mozilla-esr31']['pgo_strategy'] = 'per-checkin'
######### mozilla-b2g30_v1_4
BRANCHES['mozilla-b2g30_v1_4']['repo_path'] = "releases/mozilla-b2g30_v1_4"
BRANCHES['mozilla-b2g30_v1_4']['pgo_strategy'] = None
BRANCHES['mozilla-b2g30_v1_4']['platforms']['win32']['talos_slave_platforms'] = []
BRANCHES['mozilla-b2g30_v1_4']['platforms']['macosx64']['talos_slave_platforms'] = []
--- a/mozilla-tests/mobile_config.py
+++ b/mozilla-tests/mobile_config.py
@@ -1679,23 +1679,21 @@ BRANCHES['mozilla-central']['mobile_talo
BRANCHES['mozilla-central']['build_branch'] = "1.9.2"
BRANCHES['mozilla-central']['pgo_strategy'] = 'periodic'
BRANCHES['mozilla-central']['pgo_platforms'] = []
BRANCHES['mozilla-central']['platforms']['android']['enable_debug_unittests'] = True
BRANCHES['mozilla-central']['platforms']['android-api-9']['enable_debug_unittests'] = True
BRANCHES['mozilla-central']['platforms']['android-api-10']['enable_debug_unittests'] = True
######### mozilla-release
-BRANCHES['mozilla-release']['release_tests'] = 1
BRANCHES['mozilla-release']['repo_path'] = "releases/mozilla-release"
BRANCHES['mozilla-release']['pgo_strategy'] = 'per-checkin'
BRANCHES['mozilla-release']['pgo_platforms'] = []
######### mozilla-beta
-BRANCHES['mozilla-beta']['release_tests'] = 1
BRANCHES['mozilla-beta']['repo_path'] = "releases/mozilla-beta"
BRANCHES['mozilla-beta']['pgo_strategy'] = 'per-checkin'
BRANCHES['mozilla-beta']['pgo_platforms'] = []
######### mozilla-aurora
BRANCHES['mozilla-aurora']['repo_path'] = "releases/mozilla-aurora"
BRANCHES['mozilla-aurora']['pgo_strategy'] = 'per-checkin'
BRANCHES['mozilla-aurora']['pgo_platforms'] = []
--- a/mozilla/release-firefox-mozilla-beta.py.template
+++ b/mozilla/release-firefox-mozilla-beta.py.template
@@ -69,22 +69,22 @@ releaseConfig['otherReposToTag'] = {
'build/buildbot': 'production-0.8',
'build/partner-repacks': 'default',
'build/mozharness': 'production',
}
# Platform configuration
releaseConfig['enUSPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
releaseConfig['notifyPlatforms'] = releaseConfig['enUSPlatforms']
-releaseConfig['talosTestPlatforms'] = releaseConfig['enUSPlatforms']
+releaseConfig['talosTestPlatforms'] = ()
releaseConfig['xulrunnerPlatforms'] = releaseConfig['enUSPlatforms']
# Unittests
releaseConfig['unittestPlatforms'] = ()
-releaseConfig['enableUnittests'] = True
+releaseConfig['enableUnittests'] = False
# L10n configuration
releaseConfig['l10nPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['shippedLocalesPath'] = 'browser/locales/shipped-locales'
releaseConfig['mergeLocales'] = True
releaseConfig['l10nUsePymake'] = True
# Mercurial account
--- a/mozilla/release-firefox-mozilla-esr31.py.template
+++ b/mozilla/release-firefox-mozilla-esr31.py.template
@@ -69,22 +69,22 @@ releaseConfig['otherReposToTag'] = {
'build/compare-locales': 'RELEASE_0_9_5',
'build/buildbot': 'production-0.8',
'build/mozharness': 'production',
}
# Platform configuration
releaseConfig['enUSPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
releaseConfig['notifyPlatforms'] = releaseConfig['enUSPlatforms']
-releaseConfig['talosTestPlatforms'] = releaseConfig['enUSPlatforms']
+releaseConfig['talosTestPlatforms'] = ()
releaseConfig['xulrunnerPlatforms'] = ()
# Unittests
releaseConfig['unittestPlatforms'] = ()
-releaseConfig['enableUnittests'] = True
+releaseConfig['enableUnittests'] = False
# L10n configuration
releaseConfig['l10nPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['shippedLocalesPath'] = 'browser/locales/shipped-locales'
releaseConfig['mergeLocales'] = True
releaseConfig['l10nUsePymake'] = True
# Mercurial account
--- a/mozilla/release-firefox-mozilla-release.py.template
+++ b/mozilla/release-firefox-mozilla-release.py.template
@@ -71,22 +71,22 @@ releaseConfig['otherReposToTag'] = {
'build/buildbot': 'production-0.8',
'build/partner-repacks': 'default',
'build/mozharness': 'production',
}
# Platform configuration
releaseConfig['enUSPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
releaseConfig['notifyPlatforms'] = releaseConfig['enUSPlatforms']
-releaseConfig['talosTestPlatforms'] = releaseConfig['enUSPlatforms']
+releaseConfig['talosTestPlatforms'] = ()
releaseConfig['xulrunnerPlatforms'] = releaseConfig['enUSPlatforms']
# Unittests
releaseConfig['unittestPlatforms'] = ()
-releaseConfig['enableUnittests'] = True
+releaseConfig['enableUnittests'] = False
# L10n configuration
releaseConfig['l10nPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['shippedLocalesPath'] = 'browser/locales/shipped-locales'
releaseConfig['mergeLocales'] = True
releaseConfig['l10nUsePymake'] = True
# Mercurial account
--- a/mozilla/release-thunderbird-comm-beta.py.template
+++ b/mozilla/release-thunderbird-comm-beta.py.template
@@ -80,17 +80,17 @@ releaseConfig['otherReposToTag'] = {
# Platform configuration
releaseConfig['enUSPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
releaseConfig['notifyPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['talosTestPlatforms'] = ()
releaseConfig['xulrunnerPlatforms'] = ()
# Unittests
releaseConfig['unittestPlatforms'] = ()
-releaseConfig['enableUnittests'] = True
+releaseConfig['enableUnittests'] = False
# L10n configuration
releaseConfig['l10nPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['shippedLocalesPath'] = 'mail/locales/shipped-locales'
releaseConfig['mergeLocales'] = True
releaseConfig['l10nUsePymake'] = True
# Mercurial account
--- a/mozilla/release-thunderbird-comm-esr31.py.template
+++ b/mozilla/release-thunderbird-comm-esr31.py.template
@@ -81,17 +81,17 @@ releaseConfig['otherReposToTag'] = {
# Platform configuration
releaseConfig['enUSPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
releaseConfig['notifyPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['talosTestPlatforms'] = ()
releaseConfig['xulrunnerPlatforms'] = ()
# Unittests
releaseConfig['unittestPlatforms'] = ()
-releaseConfig['enableUnittests'] = True
+releaseConfig['enableUnittests'] = False
# L10n configuration
releaseConfig['l10nPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['shippedLocalesPath'] = 'mail/locales/shipped-locales'
releaseConfig['mergeLocales'] = True
releaseConfig['l10nUsePymake'] = True
# Mercurial account
--- a/mozilla/staging_release-firefox-mozilla-beta.py.template
+++ b/mozilla/staging_release-firefox-mozilla-beta.py.template
@@ -73,22 +73,22 @@ releaseConfig['otherReposToTag'] = {
'users/stage-ffxbld/compare-locales': 'RELEASE_AUTOMATION',
'users/stage-ffxbld/buildbot': 'production-0.8',
'users/stage-ffxbld/mozharness': 'production',
}
# Platform configuration
releaseConfig['enUSPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
releaseConfig['notifyPlatforms'] = releaseConfig['enUSPlatforms']
-releaseConfig['talosTestPlatforms'] = releaseConfig['enUSPlatforms']
+releaseConfig['talosTestPlatforms'] = ()
releaseConfig['xulrunnerPlatforms'] = releaseConfig['enUSPlatforms']
# Unittests
releaseConfig['unittestPlatforms'] = ()
-releaseConfig['enableUnittests'] = True
+releaseConfig['enableUnittests'] = False
# L10n configuration
releaseConfig['l10nPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['shippedLocalesPath'] = 'browser/locales/shipped-locales'
releaseConfig['l10nChunks'] = 6
releaseConfig['mergeLocales'] = True
releaseConfig['l10nUsePymake'] = True
--- a/mozilla/staging_release-firefox-mozilla-esr31.py.template
+++ b/mozilla/staging_release-firefox-mozilla-esr31.py.template
@@ -72,22 +72,22 @@ releaseConfig['l10nRevisionFile'] = '
releaseConfig['otherReposToTag'] = {
'users/stage-ffxbld/compare-locales': 'RELEASE_0_9_5',
'users/stage-ffxbld/buildbot': 'production-0.8',
}
# Platform configuration
releaseConfig['enUSPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
releaseConfig['notifyPlatforms'] = releaseConfig['enUSPlatforms']
-releaseConfig['talosTestPlatforms'] = releaseConfig['enUSPlatforms']
+releaseConfig['talosTestPlatforms'] = ()
releaseConfig['xulrunnerPlatforms'] = ()
# Unittests
releaseConfig['unittestPlatforms'] = ()
-releaseConfig['enableUnittests'] = True
+releaseConfig['enableUnittests'] = False
# L10n configuration
releaseConfig['l10nPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['shippedLocalesPath'] = 'browser/locales/shipped-locales'
releaseConfig['l10nChunks'] = 6
releaseConfig['mergeLocales'] = True
releaseConfig['l10nUsePymake'] = True
--- a/mozilla/staging_release-firefox-mozilla-release.py.template
+++ b/mozilla/staging_release-firefox-mozilla-release.py.template
@@ -74,22 +74,22 @@ releaseConfig['otherReposToTag'] = {
'users/stage-ffxbld/buildbot': 'production-0.8',
'users/stage-ffxbld/partner-repacks': 'default',
'users/stage-ffxbld/mozharness': 'production',
}
# Platform configuration
releaseConfig['enUSPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
releaseConfig['notifyPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
-releaseConfig['talosTestPlatforms'] = releaseConfig['enUSPlatforms']
+releaseConfig['talosTestPlatforms'] = ()
releaseConfig['xulrunnerPlatforms'] = releaseConfig['enUSPlatforms']
# Unittests
releaseConfig['unittestPlatforms'] = ()
-releaseConfig['enableUnittests'] = True
+releaseConfig['enableUnittests'] = False
# L10n configuration
releaseConfig['l10nPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['shippedLocalesPath'] = 'browser/locales/shipped-locales'
releaseConfig['l10nChunks'] = 6
releaseConfig['mergeLocales'] = True
releaseConfig['l10nUsePymake'] = True
--- a/mozilla/staging_release-thunderbird-comm-beta.py.template
+++ b/mozilla/staging_release-thunderbird-comm-beta.py.template
@@ -88,17 +88,17 @@ releaseConfig['otherReposToTag'] = {
# Platform configuration
releaseConfig['enUSPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
releaseConfig['notifyPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['talosTestPlatforms'] = ()
releaseConfig['xulrunnerPlatforms'] = ()
# Unittests
releaseConfig['unittestPlatforms'] = ()
-releaseConfig['enableUnittests'] = True
+releaseConfig['enableUnittests'] = False
# L10n configuration
releaseConfig['l10nPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['shippedLocalesPath'] = 'mail/locales/shipped-locales'
releaseConfig['l10nChunks'] = 6
releaseConfig['mergeLocales'] = True
releaseConfig['l10nUsePymake'] = True
--- a/mozilla/staging_release-thunderbird-comm-esr31.py.template
+++ b/mozilla/staging_release-thunderbird-comm-esr31.py.template
@@ -88,17 +88,17 @@ releaseConfig['otherReposToTag'] = {
# Platform configuration
releaseConfig['enUSPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
releaseConfig['notifyPlatforms'] = ('linux', 'linux64', 'win32', 'macosx64')
releaseConfig['talosTestPlatforms'] = ()
releaseConfig['xulrunnerPlatforms'] = ()
# Unittests
releaseConfig['unittestPlatforms'] = ()
-releaseConfig['enableUnittests'] = True
+releaseConfig['enableUnittests'] = False
# L10n configuration
releaseConfig['l10nPlatforms'] = releaseConfig['enUSPlatforms']
releaseConfig['shippedLocalesPath'] = 'mail/locales/shipped-locales'
releaseConfig['l10nChunks'] = 6
releaseConfig['mergeLocales'] = True
releaseConfig['l10nUsePymake'] = True