Bug 1551738: [release] Add esr68 release-type, and corresponding branch and scriprworker configuration; r=Callek

Differential Revision: https://phabricator.services.mozilla.com/D31188

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Tom Prince 2019-05-15 18:11:28 +00:00
Родитель 40f56fa87b
Коммит e03ddc13fa
4 изменённых файлов: 20 добавлений и 4 удалений

Просмотреть файл

@ -156,7 +156,7 @@ Release Promotion
Specify the next version for version bump tasks.
``release_type``
The type of release being promoted. One of "nightly", "beta", "esr60", "release-rc", or "release".
The type of release being promoted. One of "nightly", "beta", "esr60", "esr68", "release-rc", or "release".
``release_eta``
The time and date when a release is scheduled to live. This value is passed to Balrog.

Просмотреть файл

@ -82,6 +82,11 @@ PER_PROJECT_PARAMETERS = {
'release_type': 'esr60',
},
'mozilla-esr68': {
'target_tasks_method': 'mozilla_esr68_tasks',
'release_type': 'esr68',
},
'comm-central': {
'target_tasks_method': 'default',
'release_type': 'nightly',
@ -97,6 +102,11 @@ PER_PROJECT_PARAMETERS = {
'release_type': 'release',
},
'comm-esr68': {
'target_tasks_method': 'mozilla_esr68_tasks',
'release_type': 'release',
},
'pine': {
'target_tasks_method': 'pine_tasks',
},

Просмотреть файл

@ -19,9 +19,11 @@ RELEASE_PROJECTS = {
'mozilla-beta',
'mozilla-release',
'mozilla-esr60',
'mozilla-esr68',
'comm-central',
'comm-beta',
'comm-esr60',
'comm-esr68',
'oak',
}

Просмотреть файл

@ -58,6 +58,7 @@ SIGNING_SCOPE_ALIAS_TO_PROJECT = [[
'mozilla-beta',
'mozilla-release',
'mozilla-esr60',
'mozilla-esr68',
'comm-beta',
'comm-esr60',
])
@ -95,8 +96,10 @@ BEETMOVER_SCOPE_ALIAS_TO_PROJECT = [[
'mozilla-beta',
'mozilla-release',
'mozilla-esr60',
'mozilla-esr68',
'comm-beta',
'comm-esr60',
'comm-esr68',
])
]]
@ -145,8 +148,9 @@ BALROG_SCOPE_ALIAS_TO_PROJECT = [[
'comm-esr60',
])
], [
'esr', set([
'mozilla-esr52',
'esr68', set([
'mozilla-esr68',
'comm-esr68',
])
]]
@ -157,8 +161,8 @@ BALROG_SERVER_SCOPES = {
'aurora': 'balrog:server:aurora',
'beta': 'balrog:server:beta',
'release': 'balrog:server:release',
'esr': 'balrog:server:esr',
'esr60': 'balrog:server:esr',
'esr68': 'balrog:server:esr',
'default': 'balrog:server:dep',
}