Skip to content

Commit

Permalink
MINOR: Install docker-compose on docker-build workflows (#18037)
Browse files Browse the repository at this point in the history
Docker tests rely on docker compose. In recent runs it has been observed that github actions does not provide support for docker compose, so we are installing it explicitly in the workflow.
  • Loading branch information
VedarthConfluent authored and omkreddy committed Dec 4, 2024
1 parent 70ad664 commit 8b1d9e2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docker_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r docker/requirements.txt
pip install --upgrade --force-reinstall --no-cache-dir docker-compose && ln -sf /usr/local/bin/docker-compose /usr/bin/docker-compose
- name: Build image and run tests
working-directory: ./docker
run: |
Expand Down

0 comments on commit 8b1d9e2

Please sign in to comment.