Skip to content

Commit 90d6723

Browse files
committed
cicd/lib-build-and-push: load calculated matrix
1 parent 7238559 commit 90d6723

File tree

1 file changed

+2
-21
lines changed

1 file changed

+2
-21
lines changed

.github/workflows/lib-build-and-push.yml

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -88,30 +88,11 @@ jobs:
8888
build-wheels:
8989
name: Build wheels ${{ matrix.os }} (${{ matrix.platform }})
9090
runs-on: ${{ matrix.os }}
91+
needs: prepare-matrix
9192
strategy:
9293
fail-fast: false
9394
matrix:
94-
include:
95-
- os: ubuntu-24.04
96-
platform: x86_64
97-
98-
- os: ubuntu-24.04
99-
platform: PyPy
100-
101-
- os: windows-2022
102-
platform: win64
103-
104-
- os: windows-latest
105-
platform: PyPy
106-
107-
- os: macos-14
108-
platform: arm64
109-
110-
- os: macos-13
111-
platform: arm64
112-
113-
- os: macos-latest
114-
platform: PyPy
95+
include: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }}
11596

11697
steps:
11798
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)