Skip to content

Commit

Permalink
added install docker-compose step to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
przemyslawlis committed Nov 14, 2024
1 parent c1f0510 commit 6d89bcd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ jobs:
- name: Build test image
run: bash ./build/github-actions/docker_test_build.sh

- name: Install docker-compose
run: |
sudo curl -L "https://github.com/docker/compose/releases/download/v2.3.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
continue-on-error: false

- name: Test
run: docker-compose -f ./build/github-actions/docker-compose.yml up --build --exit-code-from concerto

Expand Down

0 comments on commit 6d89bcd

Please sign in to comment.