forked from mirrors/gecko-dev
Bug 1899174 - add esr128 support to gecko taskgraph. r=taskgraph-reviewers,releng-reviewers,hneiva
Differential Revision: https://phabricator.services.mozilla.com/D211758
This commit is contained in:
parent
c21dd5dd9f
commit
70d682d70f
20 changed files with 52 additions and 36 deletions
10
.cron.yml
10
.cron.yml
|
|
@ -140,7 +140,7 @@ jobs:
|
||||||
run-on-projects:
|
run-on-projects:
|
||||||
- mozilla-beta
|
- mozilla-beta
|
||||||
- mozilla-release
|
- mozilla-release
|
||||||
- mozilla-esr115
|
- mozilla-esr128
|
||||||
- elm
|
- elm
|
||||||
# For all non m-c jobs we just run once daily matching the 10 UTC
|
# For all non m-c jobs we just run once daily matching the 10 UTC
|
||||||
# nightly which is designed to align with searchfox's AWS cron
|
# nightly which is designed to align with searchfox's AWS cron
|
||||||
|
|
@ -201,7 +201,7 @@ jobs:
|
||||||
- mozilla-central
|
- mozilla-central
|
||||||
- mozilla-beta
|
- mozilla-beta
|
||||||
- mozilla-release
|
- mozilla-release
|
||||||
- mozilla-esr115
|
- mozilla-esr128
|
||||||
when:
|
when:
|
||||||
by-project:
|
by-project:
|
||||||
# No default branch
|
# No default branch
|
||||||
|
|
@ -214,9 +214,7 @@ jobs:
|
||||||
mozilla-release:
|
mozilla-release:
|
||||||
- {hour: 7, minute: 0}
|
- {hour: 7, minute: 0}
|
||||||
- {hour: 19, minute: 0}
|
- {hour: 19, minute: 0}
|
||||||
mozilla-esr115:
|
mozilla-esr128: []
|
||||||
- {hour: 7, minute: 0}
|
|
||||||
- {hour: 19, minute: 0}
|
|
||||||
|
|
||||||
- name: periodic-update
|
- name: periodic-update
|
||||||
job:
|
job:
|
||||||
|
|
@ -227,7 +225,7 @@ jobs:
|
||||||
- mozilla-central
|
- mozilla-central
|
||||||
- mozilla-beta
|
- mozilla-beta
|
||||||
- mozilla-release
|
- mozilla-release
|
||||||
- mozilla-esr115
|
- mozilla-esr128
|
||||||
when:
|
when:
|
||||||
- {weekday: 'Monday', hour: 8, minute: 0}
|
- {weekday: 'Monday', hour: 8, minute: 0}
|
||||||
- {weekday: 'Thursday', hour: 8, minute: 0}
|
- {weekday: 'Thursday', hour: 8, minute: 0}
|
||||||
|
|
|
||||||
|
|
@ -102,6 +102,7 @@ class ArtifactJob(object):
|
||||||
# The list below list should be updated when we have new ESRs.
|
# The list below list should be updated when we have new ESRs.
|
||||||
esr_candidate_trees = [
|
esr_candidate_trees = [
|
||||||
"releases/mozilla-esr115",
|
"releases/mozilla-esr115",
|
||||||
|
"releases/mozilla-esr128",
|
||||||
]
|
]
|
||||||
try_tree = "try"
|
try_tree = "try"
|
||||||
|
|
||||||
|
|
@ -874,6 +875,7 @@ class ThunderbirdMixin(object):
|
||||||
# The list below list should be updated when we have new ESRs.
|
# The list below list should be updated when we have new ESRs.
|
||||||
esr_candidate_trees = [
|
esr_candidate_trees = [
|
||||||
"releases/comm-esr115",
|
"releases/comm-esr115",
|
||||||
|
"releases/comm-esr128",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -590,8 +590,8 @@ merge-automation:
|
||||||
replacements: []
|
replacements: []
|
||||||
merge-old-head: false
|
merge-old-head: false
|
||||||
end-tag: "FIREFOX_ESR_{major_version}_BASE"
|
end-tag: "FIREFOX_ESR_{major_version}_BASE"
|
||||||
to-repo: 'https://hg.mozilla.org/releases/mozilla-esr115'
|
to-repo: 'https://hg.mozilla.org/releases/mozilla-esr128'
|
||||||
to-branch: 'esr115'
|
to-branch: 'esr128'
|
||||||
bump-central:
|
bump-central:
|
||||||
fetch-version-from: "browser/config/version.txt"
|
fetch-version-from: "browser/config/version.txt"
|
||||||
version-files:
|
version-files:
|
||||||
|
|
@ -615,7 +615,7 @@ merge-automation:
|
||||||
end-tag: 'FIREFOX_NIGHTLY_{major_version}_END'
|
end-tag: 'FIREFOX_NIGHTLY_{major_version}_END'
|
||||||
to-repo: 'https://hg.mozilla.org/mozilla-central'
|
to-repo: 'https://hg.mozilla.org/mozilla-central'
|
||||||
to-branch: 'central'
|
to-branch: 'central'
|
||||||
bump-esr115:
|
bump-esr128:
|
||||||
fetch-version-from: "browser/config/version.txt"
|
fetch-version-from: "browser/config/version.txt"
|
||||||
version-files:
|
version-files:
|
||||||
- filename: "config/milestone.txt"
|
- filename: "config/milestone.txt"
|
||||||
|
|
@ -626,8 +626,8 @@ merge-automation:
|
||||||
version-bump: "minor"
|
version-bump: "minor"
|
||||||
replacements: []
|
replacements: []
|
||||||
merge-old-head: false
|
merge-old-head: false
|
||||||
to-repo: 'https://hg.mozilla.org/releases/mozilla-esr115'
|
to-repo: 'https://hg.mozilla.org/releases/mozilla-esr128'
|
||||||
to-branch: 'esr115'
|
to-branch: 'esr128'
|
||||||
|
|
||||||
scriptworker:
|
scriptworker:
|
||||||
# See additional configuration in taskcluster/gecko_taskgraph/util/scriptworker.py
|
# See additional configuration in taskcluster/gecko_taskgraph/util/scriptworker.py
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ Project names are the repositories. They can be:
|
||||||
* `mozilla-central`
|
* `mozilla-central`
|
||||||
* `mozilla-beta`
|
* `mozilla-beta`
|
||||||
* `mozilla-release`
|
* `mozilla-release`
|
||||||
* `mozilla-esr115`
|
* `mozilla-esr128`
|
||||||
* ... A partial list can be found in taskcluster/gecko_taskgraph/util/attributes.py
|
* ... A partial list can be found in taskcluster/gecko_taskgraph/util/attributes.py
|
||||||
|
|
||||||
For try, this attribute applies only if ``-p all`` is specified. All jobs can
|
For try, this attribute applies only if ``-p all`` is specified. All jobs can
|
||||||
|
|
|
||||||
|
|
@ -200,7 +200,7 @@ Release Promotion
|
||||||
Specify the next version for version bump tasks.
|
Specify the next version for version bump tasks.
|
||||||
|
|
||||||
``release_type``
|
``release_type``
|
||||||
The type of release being promoted. One of "nightly", "beta", "esr115", "release-rc", or "release".
|
The type of release being promoted. One of "nightly", "beta", "esr115", "esr128", "release-rc", or "release".
|
||||||
|
|
||||||
``release_eta``
|
``release_eta``
|
||||||
The time and date when a release is scheduled to live. This value is passed to Balrog.
|
The time and date when a release is scheduled to live. This value is passed to Balrog.
|
||||||
|
|
|
||||||
|
|
@ -92,9 +92,9 @@ PER_PROJECT_PARAMETERS = {
|
||||||
"target_tasks_method": "mozilla_release_tasks",
|
"target_tasks_method": "mozilla_release_tasks",
|
||||||
"release_type": "release",
|
"release_type": "release",
|
||||||
},
|
},
|
||||||
"mozilla-esr115": {
|
"mozilla-esr128": {
|
||||||
"target_tasks_method": "mozilla_esr115_tasks",
|
"target_tasks_method": "mozilla_esr128_tasks",
|
||||||
"release_type": "esr115",
|
"release_type": "esr128",
|
||||||
},
|
},
|
||||||
"pine": {
|
"pine": {
|
||||||
"target_tasks_method": "pine_tasks",
|
"target_tasks_method": "pine_tasks",
|
||||||
|
|
|
||||||
|
|
@ -594,8 +594,8 @@ def target_tasks_mozilla_release(full_task_graph, parameters, graph_config):
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
@register_target_task("mozilla_esr115_tasks")
|
@register_target_task("mozilla_esr128_tasks")
|
||||||
def target_tasks_mozilla_esr115(full_task_graph, parameters, graph_config):
|
def target_tasks_mozilla_esr128(full_task_graph, parameters, graph_config):
|
||||||
"""Select the set of tasks required for a promotable beta or release build
|
"""Select the set of tasks required for a promotable beta or release build
|
||||||
of desktop, without android CI. The candidates build process involves a pipeline
|
of desktop, without android CI. The candidates build process involves a pipeline
|
||||||
of builds and signing, but does not include beetmover or balrog jobs."""
|
of builds and signing, but does not include beetmover or balrog jobs."""
|
||||||
|
|
@ -609,7 +609,7 @@ def target_tasks_mozilla_esr115(full_task_graph, parameters, graph_config):
|
||||||
|
|
||||||
platform = task.attributes.get("build_platform")
|
platform = task.attributes.get("build_platform")
|
||||||
|
|
||||||
# Android is not built on esr115.
|
# Android is not built on esr.
|
||||||
if platform and "android" in platform:
|
if platform and "android" in platform:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
@ -1209,7 +1209,7 @@ def target_tasks_release_simulation(full_task_graph, parameters, graph_config):
|
||||||
"nightly": "mozilla-central",
|
"nightly": "mozilla-central",
|
||||||
"beta": "mozilla-beta",
|
"beta": "mozilla-beta",
|
||||||
"release": "mozilla-release",
|
"release": "mozilla-release",
|
||||||
"esr115": "mozilla-esr115",
|
"esr128": "mozilla-esr128",
|
||||||
}
|
}
|
||||||
target_project = project_by_release.get(parameters["release_type"])
|
target_project = project_by_release.get(parameters["release_type"])
|
||||||
if target_project is None:
|
if target_project is None:
|
||||||
|
|
|
||||||
|
|
@ -27,8 +27,8 @@ INCLUDE_VERSION_REGEXES = {
|
||||||
"nonbeta": r"'^\d+\.\d+(\.\d+)?$'",
|
"nonbeta": r"'^\d+\.\d+(\.\d+)?$'",
|
||||||
# Same as nonbeta, except for the esr suffix
|
# Same as nonbeta, except for the esr suffix
|
||||||
"esr": r"'^\d+\.\d+(\.\d+)?esr$'",
|
"esr": r"'^\d+\.\d+(\.\d+)?esr$'",
|
||||||
# Previous esr versions, for update testing before we update users to esr115
|
# Previous esr versions, for update testing before we update users to esr128
|
||||||
"esr115-next": r"'^(52|60|68|78|91|102)+\.\d+(\.\d+)?esr$'",
|
"esr128-next": r"'^(52|60|68|78|91|102|115)+\.\d+(\.\d+)?esr$'",
|
||||||
}
|
}
|
||||||
|
|
||||||
MAR_CHANNEL_ID_OVERRIDE_REGEXES = {
|
MAR_CHANNEL_ID_OVERRIDE_REGEXES = {
|
||||||
|
|
|
||||||
|
|
@ -16,10 +16,12 @@ RELEASE_PROJECTS = {
|
||||||
"mozilla-beta",
|
"mozilla-beta",
|
||||||
"mozilla-release",
|
"mozilla-release",
|
||||||
"mozilla-esr115",
|
"mozilla-esr115",
|
||||||
|
"mozilla-esr128",
|
||||||
"comm-central",
|
"comm-central",
|
||||||
"comm-beta",
|
"comm-beta",
|
||||||
"comm-release",
|
"comm-release",
|
||||||
"comm-esr115",
|
"comm-esr115",
|
||||||
|
"comm-esr128",
|
||||||
# bug 1845368: pine is a permanent project branch used for testing
|
# bug 1845368: pine is a permanent project branch used for testing
|
||||||
# nightly updates
|
# nightly updates
|
||||||
"pine",
|
"pine",
|
||||||
|
|
|
||||||
|
|
@ -64,9 +64,11 @@ SIGNING_SCOPE_ALIAS_TO_PROJECT = [
|
||||||
"mozilla-beta",
|
"mozilla-beta",
|
||||||
"mozilla-release",
|
"mozilla-release",
|
||||||
"mozilla-esr115",
|
"mozilla-esr115",
|
||||||
|
"mozilla-esr128",
|
||||||
"comm-beta",
|
"comm-beta",
|
||||||
"comm-release",
|
"comm-release",
|
||||||
"comm-esr115",
|
"comm-esr115",
|
||||||
|
"comm-esr128",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
]
|
]
|
||||||
|
|
@ -114,9 +116,11 @@ BEETMOVER_SCOPE_ALIAS_TO_PROJECT = [
|
||||||
"mozilla-beta",
|
"mozilla-beta",
|
||||||
"mozilla-release",
|
"mozilla-release",
|
||||||
"mozilla-esr115",
|
"mozilla-esr115",
|
||||||
|
"mozilla-esr128",
|
||||||
"comm-beta",
|
"comm-beta",
|
||||||
"comm-release",
|
"comm-release",
|
||||||
"comm-esr115",
|
"comm-esr115",
|
||||||
|
"comm-esr128",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
]
|
]
|
||||||
|
|
@ -204,6 +208,13 @@ BALROG_SCOPE_ALIAS_TO_PROJECT = [
|
||||||
"comm-esr115",
|
"comm-esr115",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
"esr128",
|
||||||
|
{
|
||||||
|
"mozilla-esr128",
|
||||||
|
"comm-esr128",
|
||||||
|
},
|
||||||
|
],
|
||||||
]
|
]
|
||||||
|
|
||||||
"""Map the balrog scope aliases to the actual scopes.
|
"""Map the balrog scope aliases to the actual scopes.
|
||||||
|
|
@ -214,6 +225,7 @@ BALROG_SERVER_SCOPES = {
|
||||||
"beta": "balrog:server:beta",
|
"beta": "balrog:server:beta",
|
||||||
"release": "balrog:server:release",
|
"release": "balrog:server:release",
|
||||||
"esr115": "balrog:server:esr",
|
"esr115": "balrog:server:esr",
|
||||||
|
"esr128": "balrog:server:esr",
|
||||||
"default": "balrog:server:dep",
|
"default": "balrog:server:dep",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -499,7 +499,7 @@ linux/opt:
|
||||||
run-on-projects:
|
run-on-projects:
|
||||||
- 'mozilla-beta'
|
- 'mozilla-beta'
|
||||||
- 'mozilla-release'
|
- 'mozilla-release'
|
||||||
- 'mozilla-esr115'
|
- 'mozilla-esr128'
|
||||||
use-sccache: true
|
use-sccache: true
|
||||||
fetches:
|
fetches:
|
||||||
toolchain:
|
toolchain:
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ win32-mingwclang/opt:
|
||||||
mozconfig-variant: mingwclang
|
mozconfig-variant: mingwclang
|
||||||
run-on-projects:
|
run-on-projects:
|
||||||
- 'mozilla-central'
|
- 'mozilla-central'
|
||||||
- 'mozilla-esr115'
|
- 'mozilla-esr128'
|
||||||
use-sccache: true
|
use-sccache: true
|
||||||
fetches:
|
fetches:
|
||||||
toolchain:
|
toolchain:
|
||||||
|
|
@ -76,7 +76,7 @@ win32-mingwclang/debug:
|
||||||
mozconfig-variant: mingwclang-debug
|
mozconfig-variant: mingwclang-debug
|
||||||
run-on-projects:
|
run-on-projects:
|
||||||
- 'mozilla-central'
|
- 'mozilla-central'
|
||||||
- 'mozilla-esr115'
|
- 'mozilla-esr128'
|
||||||
use-sccache: true
|
use-sccache: true
|
||||||
fetches:
|
fetches:
|
||||||
toolchain:
|
toolchain:
|
||||||
|
|
@ -115,7 +115,7 @@ win64-mingwclang/opt:
|
||||||
mozconfig-variant: mingwclang
|
mozconfig-variant: mingwclang
|
||||||
run-on-projects:
|
run-on-projects:
|
||||||
- 'mozilla-central'
|
- 'mozilla-central'
|
||||||
- 'mozilla-esr115'
|
- 'mozilla-esr128'
|
||||||
use-sccache: true
|
use-sccache: true
|
||||||
fetches:
|
fetches:
|
||||||
toolchain:
|
toolchain:
|
||||||
|
|
@ -154,7 +154,7 @@ win64-mingwclang/debug:
|
||||||
mozconfig-variant: mingwclang-debug
|
mozconfig-variant: mingwclang-debug
|
||||||
run-on-projects:
|
run-on-projects:
|
||||||
- 'mozilla-central'
|
- 'mozilla-central'
|
||||||
- 'mozilla-esr115'
|
- 'mozilla-esr128'
|
||||||
use-sccache: true
|
use-sccache: true
|
||||||
fetches:
|
fetches:
|
||||||
toolchain:
|
toolchain:
|
||||||
|
|
|
||||||
|
|
@ -53,8 +53,7 @@ jobs:
|
||||||
mozilla-central: FIREFOX_NIGHTLY
|
mozilla-central: FIREFOX_NIGHTLY
|
||||||
mozilla-beta: LATEST_FIREFOX_RELEASED_DEVEL_VERSION
|
mozilla-beta: LATEST_FIREFOX_RELEASED_DEVEL_VERSION
|
||||||
mozilla-release: LATEST_FIREFOX_VERSION
|
mozilla-release: LATEST_FIREFOX_VERSION
|
||||||
mozilla-esr115: FIREFOX_ESR
|
mozilla-esr128: FIREFOX_ESR_NEXT
|
||||||
# mozilla-esrXX: FIREFOX_ESR_NEXT
|
|
||||||
default: LATEST_FIREFOX_DEVEL_VERSION
|
default: LATEST_FIREFOX_DEVEL_VERSION
|
||||||
products-url: https://product-details.mozilla.org/1.0/firefox_versions.json
|
products-url: https://product-details.mozilla.org/1.0/firefox_versions.json
|
||||||
treeherder:
|
treeherder:
|
||||||
|
|
|
||||||
|
|
@ -34,13 +34,13 @@ jobs:
|
||||||
by-release-type:
|
by-release-type:
|
||||||
beta: [32]
|
beta: [32]
|
||||||
release: [145]
|
release: [145]
|
||||||
esr115: [17824]
|
esr128: [17916]
|
||||||
default: []
|
default: []
|
||||||
staging:
|
staging:
|
||||||
by-release-type:
|
by-release-type:
|
||||||
beta: [32]
|
beta: [32]
|
||||||
release: [145]
|
release: [145]
|
||||||
esr115: [909]
|
esr128: [3085]
|
||||||
default: []
|
default: []
|
||||||
background-rate:
|
background-rate:
|
||||||
by-release-type:
|
by-release-type:
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ jobs:
|
||||||
by-release-type:
|
by-release-type:
|
||||||
beta: ["firefox-beta-cdntest", "firefox-beta-localtest"]
|
beta: ["firefox-beta-cdntest", "firefox-beta-localtest"]
|
||||||
release(-rc)?: ["firefox-release-cdntest", "firefox-release-localtest"]
|
release(-rc)?: ["firefox-release-cdntest", "firefox-release-localtest"]
|
||||||
esr115: ["firefox-esr115-cdntest", "firefox-esr115-localtest"]
|
esr128: ["firefox-esr128-cdntest", "firefox-esr128-localtest"]
|
||||||
default: []
|
default: []
|
||||||
pin-channels:
|
pin-channels:
|
||||||
by-release-type:
|
by-release-type:
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,8 @@ jobs:
|
||||||
firefox-esr-msix-latest-ssl: msix
|
firefox-esr-msix-latest-ssl: msix
|
||||||
firefox-esr-pkg-latest-ssl: pkg
|
firefox-esr-pkg-latest-ssl: pkg
|
||||||
firefox-esr-langpack-latest-ssl: langpack
|
firefox-esr-langpack-latest-ssl: langpack
|
||||||
esrXXX: # XXX - to change when we branch next ESR
|
esr128:
|
||||||
|
# ... these point to the newer branch
|
||||||
firefox-esr-next-latest-ssl: installer-ssl
|
firefox-esr-next-latest-ssl: installer-ssl
|
||||||
firefox-esr-next-latest: installer
|
firefox-esr-next-latest: installer
|
||||||
firefox-esr-next-msi-latest-ssl: msi
|
firefox-esr-next-msi-latest-ssl: msi
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ transforms:
|
||||||
job-defaults:
|
job-defaults:
|
||||||
name: update-verify-config-next
|
name: update-verify-config-next
|
||||||
run-on-projects: [] # to make sure this never runs as part of CI
|
run-on-projects: [] # to make sure this never runs as part of CI
|
||||||
run-on-releases: [esr115]
|
run-on-releases: [esr128]
|
||||||
shipping-phase: promote
|
shipping-phase: promote
|
||||||
worker-type: b-linux-gcp
|
worker-type: b-linux-gcp
|
||||||
worker:
|
worker:
|
||||||
|
|
@ -52,7 +52,7 @@ job-defaults:
|
||||||
updater-platform: linux-x86_64
|
updater-platform: linux-x86_64
|
||||||
product: firefox
|
product: firefox
|
||||||
channel: "esr-localtest-next"
|
channel: "esr-localtest-next"
|
||||||
include-version: esr115-next
|
include-version: esr128-next
|
||||||
last-watershed: "68.0esr"
|
last-watershed: "68.0esr"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@ job-defaults:
|
||||||
beta: "72.0"
|
beta: "72.0"
|
||||||
release(-rc)?: "72.0.2"
|
release(-rc)?: "72.0.2"
|
||||||
esr115: "68.0esr"
|
esr115: "68.0esr"
|
||||||
|
esr128: "128.0esr"
|
||||||
default: "default"
|
default: "default"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ transforms:
|
||||||
job-defaults:
|
job-defaults:
|
||||||
name: update-verify-next
|
name: update-verify-next
|
||||||
run-on-projects: [] # to make sure this never runs as part of CI
|
run-on-projects: [] # to make sure this never runs as part of CI
|
||||||
run-on-releases: [esr115]
|
run-on-releases: [esr128]
|
||||||
shipping-phase: promote
|
shipping-phase: promote
|
||||||
worker-type: b-linux-gcp
|
worker-type: b-linux-gcp
|
||||||
worker:
|
worker:
|
||||||
|
|
|
||||||
|
|
@ -92,6 +92,7 @@ def taskcluster_url(logger, commits):
|
||||||
"mozilla-central": "mozilla-central",
|
"mozilla-central": "mozilla-central",
|
||||||
"integration/autoland": "autoland",
|
"integration/autoland": "autoland",
|
||||||
"releases/mozilla-esr115": "mozilla-esr115",
|
"releases/mozilla-esr115": "mozilla-esr115",
|
||||||
|
"releases/mozilla-esr128": "mozilla-esr128",
|
||||||
}
|
}
|
||||||
cset_url = (
|
cset_url = (
|
||||||
"https://hg.mozilla.org/{repo}/json-pushes?"
|
"https://hg.mozilla.org/{repo}/json-pushes?"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue