From 3b81a908327c740b95a86b630d993dfad31fe5cb 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 cs unit tests CentOS Stream 10 unit tests are currently failing due to an issue with the repositories and we are making it non-essential for merging. However, the fail-fast property defaults to true, which causes the CentOS Stream 9 tests to get cancelled when 10 fails. Disable fail-fast so that C9S tests keep running when C10S tests fail. --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cccfb6fa0..fe7b94557 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -85,6 +85,7 @@ jobs: image_tag: stream9 - version: 10 image_tag: stream10-development + fail-fast: false # if one fails, keep the other(s) running name: "🛃 Unit tests (CentOS Stream ${{ matrix.centos_stream.version }})" runs-on: ubuntu-latest container: