Skip to content

Commit

Permalink
Merge pull request #3165 from firedrakeproject/JDBetteridge/ci_snafu
Browse files Browse the repository at this point in the history
Limit CI to 2 docker jobs running simultaneously
  • Loading branch information
JDBetteridge authored Oct 19, 2023
2 parents 941a6d3 + 03545f3 commit 23fd903
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 23fd903

Please sign in to comment.