Skip to content

Commit faad3ac

Browse files
committed
update deploy.yml
1 parent 0370178 commit faad3ac

File tree

1 file changed

+56
-1
lines changed

1 file changed

+56
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 56 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,63 @@ jobs:
1515
name: Build wheels on ${{ matrix.os }}
1616
runs-on: ${{ matrix.os }}
1717
strategy:
18+
fail-fast: false
1819
matrix:
19-
os: [ubuntu-22.04, windows-2022, macos-11]
20+
include:
21+
- os: windows-latest
22+
python: 38
23+
platform_id: win_amd64
24+
- os: windows-latest
25+
python: 39
26+
platform_id: win_amd64
27+
- os: windows-latest
28+
python: 310
29+
platform_id: win_amd64
30+
- os: windows-latest
31+
python: 311
32+
platform_id: win_amd64
33+
34+
- os: ubuntu-latest
35+
python: 38
36+
platform_id: manylinux_x86_64
37+
manylinux_image: manylinux2014
38+
- os: ubuntu-latest
39+
python: 39
40+
platform_id: manylinux_x86_64
41+
manylinux_image: manylinux2014
42+
- os: ubuntu-latest
43+
python: 310
44+
platform_id: manylinux_x86_64
45+
manylinux_image: manylinux2014
46+
- os: ubuntu-latest
47+
python: 311
48+
platform_id: manylinux_x86_64
49+
manylinux_image: manylinux2014
50+
51+
- os: macos-latest
52+
python: 38
53+
platform_id: macosx_x86_64
54+
- os: macos-latest
55+
python: 39
56+
platform_id: macosx_x86_64
57+
- os: macos-latest
58+
python: 310
59+
platform_id: macosx_x86_64
60+
- os: macos-latest
61+
python: 311
62+
platform_id: macosx_x86_64
63+
- os: macos-latest
64+
python: 38
65+
platform_id: macosx_arm64
66+
- os: macos-latest
67+
python: 39
68+
platform_id: macosx_arm64
69+
- os: macos-latest
70+
python: 310
71+
platform_id: macosx_arm64
72+
- os: macos-latest
73+
python: 311
74+
platform_id: macosx_arm64
2075

2176
steps:
2277
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)