From 44950ea008e1ad641386a1f1de9f2b127ecac4ed Mon Sep 17 00:00:00 2001 From: Artem Pelenitsyn Date: Thu, 29 Aug 2024 08:52:55 -0400 Subject: [PATCH] CI: validate: the matrix won't fail-fast Which means that if a Windows job fails, all other jobs in the matrix will be allowed to finish (other platforms, as well as other compilers on Windows, etc.) Inspired by the discussion at https://github.com/haskell/cabal/issues/10263 --- .github/workflows/validate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 9ca6470d2d2..6af58f1ed7c 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -58,6 +58,7 @@ jobs: outputs: GHC_FOR_RELEASE: ${{ format('["{0}"]', env.GHC_FOR_RELEASE) }} strategy: + fail-fast: false matrix: sys: - { os: windows-latest, shell: "C:/msys64/usr/bin/bash.exe -e {0}" }