File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 38
38
if : ${{ fromJSON(needs.extensions-matrix.outputs.matrix).aarch64_linux != null }}
39
39
strategy :
40
40
fail-fast : false
41
- max-parallel : 3
41
+ max-parallel : 5
42
42
matrix : ${{ fromJSON(needs.extensions-matrix.outputs.matrix).aarch64_linux }}
43
43
steps :
44
44
- name : Checkout Repo
55
55
if : ${{ fromJSON(needs.extensions-matrix.outputs.matrix).aarch64_darwin != null }}
56
56
strategy :
57
57
fail-fast : false
58
- max-parallel : 3
58
+ max-parallel : 5
59
59
matrix : ${{ fromJSON(needs.extensions-matrix.outputs.matrix).aarch64_darwin }}
60
60
steps :
61
61
- name : Checkout Repo
Original file line number Diff line number Diff line change @@ -238,6 +238,7 @@ def clean_package_for_output(pkg: GitHubActionPackage) -> dict:
238
238
cleaned_packages = [clean_package_for_output (pkg ) for pkg in gh_action_packages ]
239
239
gh_output = {"include" : cleaned_packages }
240
240
241
+ print (f"debug: Generated GitHub Actions matrix: { json .dumps (gh_output , indent = 2 )} " , file = sys .stderr )
241
242
print (json .dumps (gh_output ))
242
243
243
244
You can’t perform that action at this time.
0 commit comments