From 10b524d3a0603fa715755e223f01942c116d4e0f Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Wed, 4 Sep 2024 16:37:31 +0200 Subject: [PATCH] github: don't fail fast on Fedora unit tests Fedora 41 unit tests are currently failing due to an issue with the repositories and are non-essential for merging (which is common for rawhide and early branching periods). However, the fail-fast property defaults to true, which causes the other Fedora tests to get cancelled when F41 fails. Disable fail-fast so that F40 tests keep running when F41 tests fail. This is the same change we made for CS tests 3b81a908327c740b95a86b630d993dfad31fe5cb --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ef61ead20f..44cc3332ae 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,6 +21,7 @@ jobs: - 39 - 40 - 41 + fail-fast: false # if one fails, keep the other(s) running name: "🛃 Unit tests (Fedora ${{ matrix.fedora_version }})" runs-on: ubuntu-latest container: