Skip to content

Commit 839724a

Browse files
committed
attempt to fix secondary workflow
1 parent 86d6db1 commit 839724a

1 file changed

Lines changed: 13 additions & 18 deletions

File tree

.github/workflows/build_secondary_wheels.yml

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -18,30 +18,25 @@ jobs:
1818
strategy:
1919
matrix:
2020
py: [38, 39, 310]
21-
cbw_os: [dummy]
22-
arch: [dummy]
2321
include:
2422
- os: ubuntu-latest
25-
cbw_os: [manylinux_, musllinux_]
23+
cbw_os: manylinux_
24+
arch: x86_64
25+
- os: ubuntu-latest
26+
cbw_os: musllinux_
2627
arch: [x86_64, i686]
2728
- os: ubuntu-24.04-arm
2829
cbw_os: [manylinux_, musllinux_]
2930
arch: [aarch64, armv7l]
3031
- os: windows-latest
31-
cbw_os: [win_, win32]
32-
arch: [amd64, arm64, ""]
32+
cbw_os: win_
33+
arch: arm64
34+
- os: windows-latest
35+
cbw_os: win32
36+
arch: ""
3337
- os: macos-latest
3438
cbw_os: macosx_
3539
arch: [x86_64, arm64, universal2]
36-
exclude:
37-
- cbw_os: manylinux_
38-
arch: x86_64
39-
- cbw_os: win_
40-
arch: [amd64, ""]
41-
- cbw_os: win32
42-
arch: [amd64, arm64]
43-
- cbw_os: dummy
44-
- arch: dummy
4540

4641
steps:
4742
- uses: actions/checkout@v3
@@ -61,7 +56,7 @@ jobs:
6156
CIBW_TEST_COMMAND: >
6257
python -X faulthandler {package}/test/debug.py
6358
&& python -X faulthandler -m pytest -p no:faulthandler
64-
-s {package}
59+
-s {package}/test
6560
6661
- uses: actions/upload-artifact@v4
6762
with:
@@ -103,7 +98,7 @@ jobs:
10398
CIBW_TEST_COMMAND: >
10499
python -X faulthandler {package}/test/debug.py
105100
&& python -X faulthandler -m pytest -p no:faulthandler
106-
-s {package}
101+
-s {package}/test
107102
108103
- uses: actions/upload-artifact@v4
109104
with:
@@ -142,7 +137,7 @@ jobs:
142137
CIBW_TEST_COMMAND: >
143138
python -X faulthandler {package}/test/debug.py
144139
&& python -X faulthandler -m pytest -p no:faulthandler
145-
-s {package}
140+
-s {package}/test
146141
147142
- uses: actions/upload-artifact@v4
148143
with:
@@ -174,7 +169,7 @@ jobs:
174169
CIBW_TEST_COMMAND: >
175170
python -X faulthandler {package}/test/debug.py
176171
&& python -X faulthandler -m pytest -p no:faulthandler
177-
-s {package}
172+
-s {package}/test
178173
179174
- uses: actions/upload-artifact@v4
180175
with:

0 commit comments

Comments
 (0)