From 6bfd3af9e1b837ff618d42ca44c62017a0073304 Mon Sep 17 00:00:00 2001 From: Davide D'Alto Date: Wed, 20 Aug 2025 15:18:00 +0200 Subject: [PATCH] Disable fail-fast option for the build of WIP branches on CI When a build fails, GitHub default behaviour is to cancel all the build that are still running. This makes it harder to figure out what happened. --- .github/workflows/scheduler.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/scheduler.yml b/.github/workflows/scheduler.yml index 57a1c58fc..535d14f67 100644 --- a/.github/workflows/scheduler.yml +++ b/.github/workflows/scheduler.yml @@ -10,6 +10,7 @@ on: jobs: build-snapshots: strategy: + fail-fast: false matrix: branch: [ 'wip/2.4', 'wip/3.0', 'wip/3.1', 'wip/4.0', 'wip/4.1' ] uses: ./.github/workflows/build.yml