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 ca89fd8 commit ff2eaacCopy full SHA for ff2eaac
.github/workflows/wheels.yml
@@ -66,13 +66,19 @@ jobs:
66
# mix in crypto libraries into every entry
67
matrix = [{**m, "crypto": c} for m in matrix for c in crypto]
68
69
+ # add display names, these are just for displaying on GitHub
70
+ for m in matrix:
71
+ m["display_name"] = ", ".join(filter(None, [
72
+ m["os"], m.get("arch"), m.get("libc")
73
+ ]))
74
+
75
import json
76
print(json.dumps(matrix))
77
EOF
78
)" >> $GITHUB_OUTPUT
79
80
build_wheels:
- name: Wheels (${{ matrix.os }}, ${{ matrix.arch }}, ${{ matrix.libc }})
81
+ name: Wheels (${{ matrix.display_name }})
82
runs-on: ${{ matrix.os }}
83
needs: generate_matrix
84
strategy:
0 commit comments