Skip to content

Commit a9725f4

Browse files
committed
cicd/lib-build-and-push: load calculated matrix
1 parent fff4ba3 commit a9725f4

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
@@ -76,30 +76,11 @@ jobs:
7676
build-wheels:
7777
name: Build wheels ${{ matrix.os }} (${{ matrix.platform }})
7878
runs-on: ${{ matrix.os }}
79+
needs: prepare-matrix
7980
strategy:
8081
fail-fast: false
8182
matrix:
82-
include:
83-
- os: ubuntu-24.04
84-
platform: x86_64
85-
86-
- os: ubuntu-24.04
87-
platform: PyPy
88-
89-
- os: windows-2022
90-
platform: win64
91-
92-
- os: windows-latest
93-
platform: PyPy
94-
95-
- os: macos-14
96-
platform: all
97-
98-
- os: macos-13
99-
platform: all
100-
101-
- os: macos-latest
102-
platform: PyPy
83+
include: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }}
10384

10485
steps:
10586
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)