Bug 1453253 - Taskgraph support for balrog esr60/jamun tasks p=sfraser r=aki

--HG--
extra : rebase_source : f6f76ddc979d99fa21ca6814eb7121649dfcda6e
extra : intermediate-source : 58ec70321aa3923c67bf0d2479895f8bb31f936d
extra : source : f200dea1d25737b037c4d13b08689e47e74cd754
This commit is contained in:
Simon Fraser 2018-04-19 17:13:59 +01:00
parent 4205e5c6ef
commit 8a419482c2
5 changed files with 30 additions and 0 deletions

View File

@ -30,8 +30,10 @@ jobs:
by-project:
maple: [32]
birch: [145]
jamun: [724]
mozilla-beta: [32]
mozilla-release: [145]
mozilla-esr60: []
default: []
treeherder:
platform: firefox-release/opt

View File

@ -28,32 +28,40 @@ jobs:
by-project:
mozilla-beta: archive.mozilla.org
mozilla-release: archive.mozilla.org
mozilla-esr60: archive.mozilla.org
default: ftp.stage.mozaws.net
download-domain:
by-project:
mozilla-beta: download.mozilla.org
mozilla-release: download.mozilla.org
mozilla-esr60: download.mozilla.org
default: download.mozilla.org
channel-names:
by-project:
maple: ["beta", "beta-localtest", "beta-cdntest"]
birch: ["release", "release-localtest", "release-cdntest"]
jamun: ["esr", "esr-localtest", "esr-cdntest"]
mozilla-beta: ["beta", "beta-localtest", "beta-cdntest"]
mozilla-release: ["release", "release-localtest", "release-cdntest"]
mozilla-esr60: ["esr", "esr-localtest", "esr-cdntest"]
default: []
publish-rules:
by-project:
maple: [32]
birch: [145]
jamun: [724]
mozilla-beta: [32]
mozilla-release: [145]
mozilla-esr60: []
default: []
rules-to-update:
by-project:
maple: ["firefox-beta-cdntest", "firefox-beta-localtest"]
birch: ["firefox-release-cdntest", "firefox-release-localtest"]
jamun: ["firefox-esr60-cdntest", "firefox-esr60-localtest"]
mozilla-beta: ["firefox-beta-cdntest", "firefox-beta-localtest"]
mozilla-release: ["firefox-release-cdntest", "firefox-release-localtest"]
mozilla-esr60: ["firefox-esr60-cdntest", "firefox-esr60-localtest"]
default: []
platforms: ["linux", "linux64", "macosx64", "win32", "win64"]
treeherder:

View File

@ -32,7 +32,9 @@ jobs:
channel-names:
by-project:
birch: ["beta", "beta-localtest", "beta-cdntest"]
jamun: ["esr", "esr-localtest", "esr-cdntest"]
mozilla-release: ["beta", "beta-localtest", "beta-cdntest"]
mozilla-esr60: ["esr", "esr-localtest", "esr-cdntest"]
default: []
publish-rules:
by-project:
@ -42,7 +44,9 @@ jobs:
rules-to-update:
by-project:
birch: ["firefox-beta-cdntest", "firefox-beta-localtest"]
jamun: ["firefox-esr60-cdntest", "firefox-esr60-localtest"]
mozilla-release: ["firefox-beta-cdntest", "firefox-beta-localtest"]
mozilla-esr60: ["firefox-esr60-cdntest", "firefox-esr60-localtest"]
default: []
treeherder:
platform: linux64/opt

View File

@ -28,25 +28,33 @@ jobs:
archive-domain:
by-project:
mozilla-release: archive.mozilla.org
mozilla-esr60: archive.mozilla.org
default: ftp.stage.mozaws.net
download-domain:
by-project:
mozilla-release: download.mozilla.org
mozilla-esr60: download.mozilla.org
default: download.mozilla.org
channel-names:
by-project:
birch: ["beta", "beta-localtest", "beta-cdntest"]
jamun: ["esr", "esr-localtest", "esr-cdntest"]
mozilla-release: ["beta", "beta-localtest", "beta-cdntest"]
mozilla-esr60: ["esr", "esr-localtest", "esr-cdntest"]
default: []
publish-rules:
by-project:
birch: [32]
jamun: [724]
mozilla-release: [32]
mozilla-esr60: []
default: []
rules-to-update:
by-project:
birch: ["firefox-beta-cdntest", "firefox-beta-localtest"]
jamun: ["firefox-esr60-cdntest", "firefox-esr60-localtest"]
mozilla-release: ["firefox-beta-cdntest", "firefox-beta-localtest"]
mozilla-esr60: ["firefox-esr60-cdntest", "firefox-esr60-localtest"]
default: []
treeherder:
platform: linux64/opt

View File

@ -46,6 +46,7 @@ SIGNING_SCOPE_ALIAS_TO_PROJECT = [[
'all-release-branches', set([
'mozilla-beta',
'mozilla-release',
'mozilla-esr60',
'comm-beta',
])
]]
@ -76,12 +77,14 @@ BEETMOVER_SCOPE_ALIAS_TO_PROJECT = [[
'mozilla-central',
'mozilla-beta',
'mozilla-release',
'mozilla-esr60',
'comm-central',
])
], [
'all-release-branches', set([
'mozilla-beta',
'mozilla-release',
'mozilla-esr60',
])
]]
@ -175,6 +178,10 @@ BALROG_SCOPE_ALIAS_TO_PROJECT = [[
'release', set([
'mozilla-release',
])
], [
'esr60', set([
'mozilla-esr60',
])
], [
'esr', set([
'mozilla-esr52',
@ -189,6 +196,7 @@ BALROG_SERVER_SCOPES = {
'beta': 'balrog:server:beta',
'release': 'balrog:server:release',
'esr': 'balrog:server:esr',
'esr60': 'balrog:server:esr',
'default': 'balrog:server:dep',
}