Skip to content

Commit ff2eaac

Browse files
committed
ci: fix workflow name display issue
1 parent ca89fd8 commit ff2eaac

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,19 @@ jobs:
6666
# mix in crypto libraries into every entry
6767
matrix = [{**m, "crypto": c} for m in matrix for c in crypto]
6868
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+
6975
import json
7076
print(json.dumps(matrix))
7177
EOF
7278
)" >> $GITHUB_OUTPUT
7379
7480
build_wheels:
75-
name: Wheels (${{ matrix.os }}, ${{ matrix.arch }}, ${{ matrix.libc }})
81+
name: Wheels (${{ matrix.display_name }})
7682
runs-on: ${{ matrix.os }}
7783
needs: generate_matrix
7884
strategy:

0 commit comments

Comments
 (0)