commit aeed79d6a8d52af7077c4b3d53df523aa0dfee8d
parent caaed8b17d4f14a0d705c3f2e5fcb43b82b7c0bc
Author: Julien Cristau <jcristau@mozilla.com>
Date: Fri, 3 Oct 2025 13:31:26 +0000
Bug 1992345 - ignore unsupported platform when populating release history. r=releng-reviewers,taskgraph-reviewers,bhearsum
While walking through existing balrog release blobs, ignore platforms
that are no longer supported.
Differential Revision: https://phabricator.services.mozilla.com/D267372
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/taskcluster/gecko_taskgraph/util/partials.py b/taskcluster/gecko_taskgraph/util/partials.py
@@ -283,6 +283,9 @@ def _populate_release_history(product, branch, partial_updates):
url_pattern = history["fileUrls"][localtest]["completes"]["*"]
for platform in history["platforms"]:
+ if platform not in FTP_PLATFORM_MAP:
+ # skip EOL platforms
+ continue
if "alias" in history["platforms"][platform]:
continue
if platform not in builds: