From 8fe05d5b74b08cfe131944e1dd52ad5650ed198b Mon Sep 17 00:00:00 2001 From: OpenSauce Date: Mon, 11 Aug 2025 12:33:52 +0100 Subject: [PATCH] ci: Don't cancel other builds in matrix if one fails --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 616773ded..81b406770 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,6 +25,7 @@ jobs: linux: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: target: ["appimage", "fresh"] container: @@ -63,6 +64,7 @@ jobs: macos: runs-on: ${{ (matrix.target == 'x86_64' && 'macos-13') || 'macos-14' }} strategy: + fail-fast: false matrix: target: ["x86_64", "arm64"] env: @@ -134,6 +136,7 @@ jobs: windows: runs-on: windows-latest strategy: + fail-fast: false matrix: target: ["msvc", "msys2"] defaults: