Skip to content

Commit 8b7f394

Browse files
committed
Try one more
1 parent b7c89c9 commit 8b7f394

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci_docker_tests.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,12 @@ jobs:
7272

7373
- name: Build Docker images
7474
run: |
75-
docker compose build qsim-base-image
76-
docker compose build qsim-cxx-tests-image qsim-py-tests-image
75+
# Running locally, a plain "docker compose build" works as expected.
76+
# On GitHub, buildx tries to build all 3 images in parallel even if
77+
# you use env var COMPOSE_PARALLEL_LIMIT or option --parallel 1.
78+
# The build then fails because the qsim-base image is not available
79+
# to the other two build processes.
80+
docker compose --parallel 1 build
7781
7882
- name: Run C++ tests
7983
run: docker run --rm qsim-cxx-tests:latest

0 commit comments

Comments
 (0)