Bug 1253756 - Branch specifics for relpro on release r=jlund a=release DONTBUILD

MozReview-Commit-ID: Fva2LLVlsRV

--HG--
rename : testing/mozharness/configs/single_locale/mozilla-beta.py => testing/mozharness/configs/single_locale/mozilla-release.py
extra : rebase_source : 409a84ec51db28e84cff7a1c99a6a71062b53985
extra : amend_source : 7ee20d43707114d46cc66b2056b99402d5b2369a
This commit is contained in:
Rail Aliiev 2016-03-14 08:26:54 -04:00
parent ce9ddc5a29
commit 4a14dd7e13
2 changed files with 56 additions and 4 deletions

View File

@ -38,14 +38,28 @@ config = {
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
},
'mozilla-release': {
'enable_release_promotion': True,
'repo_path': 'releases/mozilla-release',
# TODO I think we can remove update_channel since we don't run
# nightlies for mozilla-release
'update_channel': 'release',
'branch_uses_per_checkin_strategy': True,
'use_branch_in_symbols_extra_buildid': False,
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
'platform_overrides': {
'linux': {
'src_mozconfig': 'browser/config/mozconfigs/linux32/release',
},
'linux64': {
'src_mozconfig': 'browser/config/mozconfigs/linux64/release',
},
'macosx64': {
'src_mozconfig': 'browser/config/mozconfigs/macosx-universal/release',
},
'win32': {
'src_mozconfig': 'browser/config/mozconfigs/win32/release',
},
'win64': {
'src_mozconfig': 'browser/config/mozconfigs/win64/release',
},
'linux-debug': {
'update_channel': 'default',
},
@ -96,8 +110,6 @@ config = {
'mozilla-beta': {
'enable_release_promotion': 1,
'repo_path': 'releases/mozilla-beta',
# TODO I think we can remove update_channel since we don't run
# nightlies for mozilla-beta
'update_channel': 'beta',
'branch_uses_per_checkin_strategy': True,
'use_branch_in_symbols_extra_buildid': False,

View File

@ -0,0 +1,40 @@
config = {
"nightly_build": True,
"branch": "mozilla-release",
"en_us_binary_url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-release/",
"update_channel": "release",
"latest_mar_dir": '/pub/mozilla.org/firefox/nightly/latest-mozilla-release-l10n',
# l10n
"hg_l10n_base": "https://hg.mozilla.org/releases/l10n/mozilla-release",
# repositories
"mozilla_dir": "mozilla-release",
"repos": [{
"vcs": "hg",
"repo": "https://hg.mozilla.org/build/tools",
"revision": "default",
"dest": "tools",
}, {
"vcs": "hgtool",
"repo": "https://hg.mozilla.org/releases/mozilla-release",
"revision": "default",
"dest": "mozilla-release",
}, {
"vcs": "hgtool",
"repo": "https://hg.mozilla.org/build/compare-locales",
"revision": "RELEASE_AUTOMATION"
}],
# purge options
'purge_minsize': 12,
'is_automation': True,
'default_actions': [
"clobber",
"pull",
"list-locales",
"setup",
"repack",
"taskcluster-upload",
"summary",
],
}