From c525fca7c7f476d6534ebf5ca5f842494e1031cf Mon Sep 17 00:00:00 2001 From: Silvestre Zabala Date: Fri, 29 Nov 2024 10:10:01 +0100 Subject: [PATCH] fix(ci): disable fail-fast in acceptance tests workflow # Issue Due to fail-fast we were getting less feedback per run, making the feedback loop slower. # Fix With fail-fast: false other matrix jobs will be cancelled. --- .github/workflows/acceptance_tests_reusable.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/acceptance_tests_reusable.yaml b/.github/workflows/acceptance_tests_reusable.yaml index c902ab08ef..869379ca24 100644 --- a/.github/workflows/acceptance_tests_reusable.yaml +++ b/.github/workflows/acceptance_tests_reusable.yaml @@ -67,6 +67,7 @@ jobs: name: Acceptance Tests needs: [ deploy_autoscaler ] strategy: + fail-fast: false matrix: suite: "${{ fromJSON(inputs.suites) }}" runs-on: ubuntu-latest