Skip to content

Commit

Permalink
[main] fix docker compose command (trustification#1672)
Browse files Browse the repository at this point in the history
Signed-off-by: desmax74 <mdessi@redhat.com>
  • Loading branch information
desmax74 authored Aug 5, 2024
1 parent a98d3cd commit ac2b39e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Compose
run: |
docker-compose ${files} up -d
docker compose ${files} up -d
- name: Print storage use
run: |
Expand All @@ -80,11 +80,11 @@ jobs:
run: |
#RUST_LOG=tantivy=off,info cargo xtask test --ui --webdriver none --nocapture
RUST_LOG=tantivy=off,info cargo xtask test --testset integ --nocoverage --nocapture --concurrent=1
docker-compose ${files} ps
docker compose ${files} ps
- name: Print logs
if: always()
run: |
docker ps -a
docker-compose ${files} logs
docker-compose ${files} down
docker compose ${files} logs
docker compose ${files} down

0 comments on commit ac2b39e

Please sign in to comment.