Skip to content

Commit

Permalink
Bug 1839176 - Support esr115 (mozilla-releng#606)
Browse files Browse the repository at this point in the history
  • Loading branch information
hneiva authored Jun 19, 2023
1 parent 5e5952e commit 1c49bc8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 5 deletions.
32 changes: 27 additions & 5 deletions src/scriptworker/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,13 +430,20 @@
"/releases/mozilla-beta",
"/releases/mozilla-release",
"/releases/mozilla-esr102",
"/releases/mozilla-esr115",
"/projects/birch",
),
# Limit things like pushapk to just these branches
"release": ("/releases/mozilla-release",),
"beta": ("/releases/mozilla-beta",),
"beta-or-release": ("/releases/mozilla-beta", "/releases/mozilla-release"),
"esr": ("/releases/mozilla-esr102",),
"beta-or-release": (
"/releases/mozilla-beta",
"/releases/mozilla-release",
),
"esr": (
"/releases/mozilla-esr102",
"/releases/mozilla-esr115",
),
"nightly": ("/mozilla-central",),
# Which repos can do nightly signing?
"all-nightly-branches": (
Expand All @@ -445,28 +452,43 @@
"/releases/mozilla-beta",
"/releases/mozilla-release",
"/releases/mozilla-esr102",
"/releases/mozilla-esr115",
),
"all-production-branches": (
"/mozilla-central",
"/releases/mozilla-beta",
"/releases/mozilla-release",
"/releases/mozilla-esr102",
"/releases/mozilla-esr115",
),
"all-production-branches-and-autoland": (
"/mozilla-central",
"/releases/mozilla-beta",
"/releases/mozilla-release",
"/releases/mozilla-esr102",
"/releases/mozilla-esr115",
"/integration/autoland",
),
}
),
"thunderbird": immutabledict(
{
"all-release-branches": ("/releases/comm-beta", "/releases/comm-esr102"),
"all-release-branches": (
"/releases/comm-beta",
"/releases/comm-esr102",
"/releases/comm-esr115",
),
"beta": ("/releases/comm-beta",),
"esr": ("/releases/comm-esr102",),
"all-nightly-branches": ("/comm-central", "/releases/comm-beta", "/releases/comm-esr102"),
"esr": (
"/releases/comm-esr102",
"/releases/comm-esr115",
),
"all-nightly-branches": (
"/comm-central",
"/releases/comm-beta",
"/releases/comm-esr102",
"/releases/comm-esr102",
),
"nightly": ("/comm-central",),
}
),
Expand Down
1 change: 1 addition & 0 deletions tests/test_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ def test_get_worker_type(task, result):
("https://hg.mozilla.org/mozilla-central", "mozilla-central", False, "firefox"),
("https://hg.mozilla.org/projects/foo", "foo", True, "firefox"),
("https://hg.mozilla.org/releases/mozilla-esr102", "mozilla-esr102", False, "firefox"),
("https://hg.mozilla.org/releases/mozilla-esr115", "mozilla-esr115", False, "firefox"),
("https://hg.mozilla.org/try", "try", False, "firefox"),
("https://hg.mozilla.org/releases/unknown", "unknown", True, "firefox"),
("https://hg.mozilla.org/users/mozilla_hocat.ca/esr60-stage/", "", True, "firefox"),
Expand Down

0 comments on commit 1c49bc8

Please sign in to comment.