We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7c89c9 commit 682e975Copy full SHA for 682e975
1 file changed
.github/workflows/ci_docker_tests.yaml
@@ -71,9 +71,14 @@ jobs:
71
driver: docker
72
73
- name: Build Docker images
74
+ env:
75
+ # On GitHub, docker compose tries to use multiple concurrent calls.
76
+ # This causes the build to fail, because the test images depend on
77
+ # qsim-base, and when buildx can't find qsim-base, it tries to get
78
+ # it from docker.io.
79
+ COMPOSE_PARALLEL_LIMIT: 1
80
run: |
- docker compose build qsim-base-image
- docker compose build qsim-cxx-tests-image qsim-py-tests-image
81
+ docker compose build
82
83
- name: Run C++ tests
84
run: docker run --rm qsim-cxx-tests:latest
0 commit comments