Skip to content

Commit 7630de8

Browse files
committed
build
1 parent e4bd5e6 commit 7630de8

1 file changed

Lines changed: 23 additions & 8 deletions

File tree

.github/workflows/wheel.yml

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
2222
CIBW_BEFORE_ALL: "pip install numpy cython"
23-
CIBW_SKIP: "pp* *37* *38* *-musllinux_aarch64"
23+
CIBW_SKIP: "pp* *38* *-musllinux_aarch64"
2424
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
2525
CIBW_TEST_SKIP: "*"
2626

@@ -52,10 +52,13 @@ jobs:
5252
- name: Build wheels
5353
uses: joerick/cibuildwheel@v3.3.0
5454

55+
- name: list output
56+
run: ls ./wheelhouse/*.whl
57+
5558
- uses: actions/upload-artifact@v6
5659
with:
5760
path: ./wheelhouse/*.whl
58-
name: wheels
61+
name: wheels-${{ matrix.os }}-${{ matrix.architecture}}-${{ matrix.linux_archs}}
5962

6063
buildLinx686:
6164
if: startsWith(github.ref, 'refs/tags/20')
@@ -107,10 +110,13 @@ jobs:
107110
- name: Build wheels
108111
uses: joerick/cibuildwheel@v3.3.0
109112

113+
- name: list output
114+
run: ls ./wheelhouse/*.whl
115+
110116
- uses: actions/upload-artifact@v6
111117
with:
112118
path: ./wheelhouse/*.whl
113-
name: wheels
119+
name: wheels-${{ matrix.os }}-${{ matrix.architecture}}-${{ matrix.linux_archs }}
114120

115121
buildLinx86x64:
116122
if: startsWith(github.ref, 'refs/tags/20')
@@ -162,10 +168,13 @@ jobs:
162168
- name: Build wheels
163169
uses: joerick/cibuildwheel@v3.3.0
164170

171+
- name: list output
172+
run: ls ./wheelhouse/*.whl
173+
165174
- uses: actions/upload-artifact@v6
166175
with:
167176
path: ./wheelhouse/*.whl
168-
name: wheels
177+
name: wheels-${{ matrix.os }}-${{ matrix.architecture}}-${{ martix.linux_archs}}
169178

170179
buildWin:
171180
if: startsWith(github.ref, 'refs/tags/20')
@@ -217,10 +226,13 @@ jobs:
217226
- name: Build wheels
218227
uses: joerick/cibuildwheel@v3.3.0
219228

229+
- name: list output
230+
run: ls ./wheelhouse/*.whl
231+
220232
- uses: actions/upload-artifact@v6
221233
with:
222234
path: ./wheelhouse/*.whl
223-
name: wheels
235+
name: wheels-${{ matrix.os }}-${{ matrix.architecture}}
224236

225237
buildMAC:
226238
if: startsWith(github.ref, 'refs/tags/20')
@@ -233,8 +245,8 @@ jobs:
233245

234246
name: ${{ matrix.os }} ${{ matrix.architecture}}
235247
env:
236-
CIBW_BEFORE_ALL: "pip install numpy==2.0.0 cython"
237-
CIBW_SKIP: "pp* *37* *38* *39*"
248+
CIBW_BEFORE_ALL: "pip install numpy cython"
249+
CIBW_SKIP: "*38* *39*"
238250
CIBW_ARCHS_MACOS: ${{ matrix.architecture }}
239251
CIBW_TEST_SKIP: "*"
240252

@@ -251,7 +263,10 @@ jobs:
251263
- name: Build wheels
252264
uses: joerick/cibuildwheel@v3.3.0
253265

266+
- name: list output
267+
run: ls ./wheelhouse/*.whl
268+
254269
- uses: actions/upload-artifact@v6
255270
with:
256271
path: ./wheelhouse/*.whl
257-
name: wheels
272+
name: wheels-${{ matrix.os }}-${{ matrix.architecture}}

0 commit comments

Comments
 (0)