We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7c89c9 commit 8b7f394Copy full SHA for 8b7f394
1 file changed
.github/workflows/ci_docker_tests.yaml
@@ -72,8 +72,12 @@ jobs:
72
73
- name: Build Docker images
74
run: |
75
- docker compose build qsim-base-image
76
- docker compose build qsim-cxx-tests-image qsim-py-tests-image
+ # Running locally, a plain "docker compose build" works as expected.
+ # 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
81
82
- name: Run C++ tests
83
run: docker run --rm qsim-cxx-tests:latest
0 commit comments