We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 617273d commit b842e89Copy full SHA for b842e89
scripts/github-matrix.py
@@ -231,13 +231,14 @@ def clean_package_for_output(pkg: GitHubActionPackage) -> dict:
231
gh_action_packages = [
232
{**pkg, "postgresql_version": pkg["attr"].split(".")[-3]}
233
for pkg in gh_action_packages
234
- if is_extension_pkg(pkg) and not pkg["already_cached"]
+ if is_extension_pkg(pkg)
235
]
236
237
# Group packages by system
238
grouped_by_system = defaultdict(list)
239
for pkg in gh_action_packages:
240
- grouped_by_system[pkg["system"]].append(clean_package_for_output(pkg))
+ if not pkg["already_cached"]:
241
+ grouped_by_system[pkg["system"]].append(clean_package_for_output(pkg))
242
243
# Create output with system-specific matrices
244
gh_output = {}
0 commit comments