From: Dustin L. Howett Date: Tue, 21 Nov 2023 20:49:41 +0000 (-0600) Subject: win32: ensure that the MSVC build doesn't terminate when MinGW fails (#2018) X-Git-Tag: v3.7.3~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5507b9e3da277e42ead234693d138d131119188;p=thirdparty%2Flibarchive.git win32: ensure that the MSVC build doesn't terminate when MinGW fails (#2018) For `matrix`-strategy builds, GitHub actions will terminate all related matrix legs when one of them fails. Disabling `fail-fast` knocks this behavior off. --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca5bf0e1b..0bf347174 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,6 +119,7 @@ jobs: Windows: runs-on: windows-2022 strategy: + fail-fast: false matrix: be: [mingw-gcc, msvc] steps: