Skip to content

Commit

Permalink
Set fail-fast to false in release CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Heliozoa committed Feb 21, 2024
1 parent 42f1c2a commit 443614c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/upload-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
linux:
runs-on: ubuntu-20.04
strategy:
fail-fast: false # we don't want to cancel building binaries for other targets just because one fails
matrix:
target:
[
Expand Down Expand Up @@ -69,6 +70,7 @@ jobs:
windows:
runs-on: windows-2022
strategy:
fail-fast: false # we don't want to cancel building binaries for other targets just because one fails
matrix:
target: [i686-pc-windows-msvc, x86_64-pc-windows-msvc]
steps:
Expand Down Expand Up @@ -107,6 +109,7 @@ jobs:
macos:
runs-on: macos-11
strategy:
fail-fast: false # we don't want to cancel building binaries for other targets just because one fails
matrix:
target: [x86_64-apple-darwin, aarch64-apple-darwin]
steps:
Expand Down

0 comments on commit 443614c

Please sign in to comment.