From 6ece7d8cc2724a3629f8bc9b185fe691cb0a78af Mon Sep 17 00:00:00 2001 From: Pierre Riteau Date: Thu, 24 Jul 2025 07:38:50 +0200 Subject: [PATCH] CI: Limit job parallelism We are seeing random CI failures with: Failed to set execute bit on remote files Limit parallelism in case it is related to concurrent access to the same Docker image. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9f1a6e..12bd60e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,6 +40,7 @@ jobs: needs: build strategy: fail-fast: false + max-parallel: 1 matrix: image: - 'rockylinux:8.9'