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 7238559 commit 90d6723Copy full SHA for 90d6723
.github/workflows/lib-build-and-push.yml
@@ -88,30 +88,11 @@ jobs:
88
build-wheels:
89
name: Build wheels ${{ matrix.os }} (${{ matrix.platform }})
90
runs-on: ${{ matrix.os }}
91
+ needs: prepare-matrix
92
strategy:
93
fail-fast: false
94
matrix:
- include:
95
- - os: ubuntu-24.04
96
- platform: x86_64
97
-
98
99
- platform: PyPy
100
101
- - os: windows-2022
102
- platform: win64
103
104
- - os: windows-latest
105
106
107
- - os: macos-14
108
- platform: arm64
109
110
- - os: macos-13
111
112
113
- - os: macos-latest
114
+ include: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }}
115
116
steps:
117
- uses: actions/checkout@v4
0 commit comments