From 03545f34ce0ff2a8b1977ebf9e895ecd7c2eb630 Mon Sep 17 00:00:00 2001 From: Jack Betteridge Date: Mon, 16 Oct 2023 16:15:36 +0100 Subject: [PATCH] Limit CI to 2 docker jobs running simultaneously --- .github/workflows/docker.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index f3f297237e..6e6bbcdb28 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -41,7 +41,8 @@ jobs: secrets: inherit # Firedrake container (Firedrake and friends) docker_firedrake: - needs: docker_vanilla + # Artificial dependency on docker_complex due to CI race condition + needs: [docker_vanilla, docker_complex] uses: ./.github/workflows/docker_reuse.yml with: target: firedrake @@ -50,7 +51,8 @@ jobs: secrets: inherit # Firedrake container with documentation dependencies and TeX docker_docdeps: - needs: docker_vanilla + # Artificial dependency on docker_complex due to CI race condition + needs: [docker_vanilla, docker_complex] uses: ./.github/workflows/docker_reuse.yml with: target: firedrake-docdeps