Skip to content

Commit db578a1

Browse files
committed
Don't fail fast on wheel builds.
1 parent cada83c commit db578a1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/CI.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,12 @@ jobs:
7474
manylinux:
7575
needs: test
7676
runs-on: ubuntu-latest
77+
7778
strategy:
79+
fail-fast: false
7880
matrix:
7981
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
82+
8083
steps:
8184
- uses: actions/checkout@v4
8285
with:
@@ -109,12 +112,15 @@ jobs:
109112
musllinux:
110113
needs: test
111114
runs-on: ubuntu-latest
115+
112116
strategy:
117+
fail-fast: false
113118
matrix:
114119
target:
115120
- aarch64-unknown-linux-musl
116121
- i686-unknown-linux-musl
117122
- x86_64-unknown-linux-musl
123+
118124
steps:
119125
- uses: actions/checkout@v4
120126
with:
@@ -147,9 +153,12 @@ jobs:
147153
windows:
148154
needs: test
149155
runs-on: windows-latest
156+
150157
strategy:
158+
fail-fast: false
151159
matrix:
152160
target: [x64, x86] # x86 is not supported by pypy
161+
153162
steps:
154163
- uses: actions/checkout@v4
155164
with:
@@ -183,9 +192,12 @@ jobs:
183192
windows-free-threaded:
184193
needs: test
185194
runs-on: windows-latest
195+
186196
strategy:
197+
fail-fast: false
187198
matrix:
188199
target: [x64, x86] # x86 is not supported by pypy
200+
189201
steps:
190202
- uses: actions/checkout@v4
191203
with:
@@ -210,9 +222,12 @@ jobs:
210222
macos:
211223
needs: test
212224
runs-on: macos-latest
225+
213226
strategy:
227+
fail-fast: false
214228
matrix:
215229
target: [x86_64, aarch64]
230+
216231
steps:
217232
- uses: actions/checkout@v4
218233
with:

0 commit comments

Comments
 (0)