From 227db4c457652d46df105ce96889de150f99b078 Mon Sep 17 00:00:00 2001 From: Emil Simeonov Date: Sat, 20 Jun 2026 22:42:58 +0200 Subject: [PATCH] ci: run molecule runners sequentially (max-parallel: 1) With fail-fast: true and max-parallel: 1, runner 0 must complete before runner 1 starts. If runner 0 fails, runners 1 and 2 are cancelled. This gives immediate feedback on the first failure instead of waiting for all 3 to fail in parallel. Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- .gitea/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b810295..59273a8 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -31,6 +31,7 @@ jobs: runs-on: docker strategy: fail-fast: true + max-parallel: 1 matrix: runner-index: [0, 1, 2] steps: