]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
win32: ensure that the MSVC build doesn't terminate when MinGW fails (#2018)
authorDustin L. Howett <dustin@howett.net>
Tue, 21 Nov 2023 20:49:41 +0000 (14:49 -0600)
committerGitHub <noreply@github.com>
Tue, 21 Nov 2023 20:49:41 +0000 (12:49 -0800)
For `matrix`-strategy builds, GitHub actions will terminate all related
matrix legs when one of them fails.

Disabling `fail-fast` knocks this behavior off.

.github/workflows/ci.yml

index ca5bf0e1ba1535f7ebc52556850f4d10cf761b3f..0bf347174b21e2f663961ded337cff9d5134eaaf 100644 (file)
@@ -119,6 +119,7 @@ jobs:
   Windows:
     runs-on: windows-2022
     strategy:
+      fail-fast: false
       matrix:
         be: [mingw-gcc, msvc]
     steps: