From: Ilia Shipitsin Date: Thu, 23 Oct 2025 16:39:49 +0000 (+0200) Subject: CI: disable fail-fast on fedora rawhide builds X-Git-Tag: v3.3-dev11~23 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9781d91e4d263ad3f9dc52240f052c9eabf03acf;p=thirdparty%2Fhaproxy.git CI: disable fail-fast on fedora rawhide builds Previously builds were dependent in terms that if one fails, other are stopped. By their nature those builds are independent, let's not to fail them altogether --- diff --git a/.github/workflows/fedora-rawhide.yml b/.github/workflows/fedora-rawhide.yml index 38808f510..c01c8c59f 100644 --- a/.github/workflows/fedora-rawhide.yml +++ b/.github/workflows/fedora-rawhide.yml @@ -18,6 +18,7 @@ jobs: { name: x86, cc: gcc, QUICTLS_EXTRA_ARGS: "-m32 linux-generic32", ADDLIB_ATOMIC: "-latomic", ARCH_FLAGS: "-m32" }, { name: x86, cc: clang, QUICTLS_EXTRA_ARGS: "-m32 linux-generic32", ADDLIB_ATOMIC: "-latomic", ARCH_FLAGS: "-m32" } ] + fail-fast: false name: ${{ matrix.platform.cc }}.${{ matrix.platform.name }} runs-on: ubuntu-latest if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }}