Skip to content

Commit 443614c

Browse files
committed
Set fail-fast to false in release CI
1 parent 42f1c2a commit 443614c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/upload-binaries.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
linux:
1313
runs-on: ubuntu-20.04
1414
strategy:
15+
fail-fast: false # we don't want to cancel building binaries for other targets just because one fails
1516
matrix:
1617
target:
1718
[
@@ -69,6 +70,7 @@ jobs:
6970
windows:
7071
runs-on: windows-2022
7172
strategy:
73+
fail-fast: false # we don't want to cancel building binaries for other targets just because one fails
7274
matrix:
7375
target: [i686-pc-windows-msvc, x86_64-pc-windows-msvc]
7476
steps:
@@ -107,6 +109,7 @@ jobs:
107109
macos:
108110
runs-on: macos-11
109111
strategy:
112+
fail-fast: false # we don't want to cancel building binaries for other targets just because one fails
110113
matrix:
111114
target: [x86_64-apple-darwin, aarch64-apple-darwin]
112115
steps:

0 commit comments

Comments
 (0)