Skip to content

Commit

Permalink
ci: tweak discover docker-compose install
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Indenbaum <[email protected]>
  • Loading branch information
Alexander Indenbaum committed Aug 5, 2024
1 parent 368a1c2 commit 1146bc7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,10 @@ jobs:

- name: Load container images
run: |
if ! docker-compose --version 2>&1 > /dev/null ; then
sudo apt update
sudo apt install -y docker-compose
fi
docker load < nvmeof.tar
docker load < nvmeof-cli.tar
docker load < ceph.tar
Expand All @@ -377,10 +381,6 @@ jobs:
- name: Start discovery controller
if: matrix.integration == 'container'
run: |
if ! docker-compose --version 2>&1 > /dev/null ; then
sudo apt update
sudo apt install -y docker-compose
fi
docker-compose --version
docker-compose up --detach discovery
Expand Down

0 comments on commit 1146bc7

Please sign in to comment.