Skip to content

Commit

Permalink
fix(dagger): missing docker-compose
Browse files Browse the repository at this point in the history
- sometimes the docker-compose executable is missing for some reason

Signed-off-by: AtomicFS <[email protected]>
  • Loading branch information
AtomicFS committed Aug 2, 2024
1 parent a9e6b0d commit fd8b540
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/docker-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install docker-compose
run: |
curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o docker-compose
chmod +x ./docker-compose
- name: Validate compose file
run: docker-compose -f docker/compose.yaml config
run: ./docker-compose -f docker/compose.yaml config

- name: Install python dependencies
run: pip install -r ./.dagger-ci/daggerci/requirements.txt
Expand Down

0 comments on commit fd8b540

Please sign in to comment.