Skip to content

Commit

Permalink
Use compose subcommand instead of docker-compose
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Antonio Osorio <[email protected]>
  • Loading branch information
JAORMX committed Aug 27, 2024
1 parent 931ad58 commit 2cd3c97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,17 @@ jobs:
- run: pip install -r requirements.txt
working-directory: ./integration/test_consumer/
- name: Build the stack
run: docker-compose -f docker-compose-integration.yml up -d
run: docker compose -f docker-compose-integration.yml up -d
working-directory: ./integration
- name: Run consumer python script
run: python check_kafka_output.py
working-directory: ./integration/test_consumer
- name: Output filtered log (full log in artifacts)
run: docker-compose -f docker-compose-integration.yml logs feeds | grep -v "Sending package" | grep -v "Processing Package"
run: docker compose -f docker-compose-integration.yml logs feeds | grep -v "Sending package" | grep -v "Processing Package"
working-directory: ./integration/
if: ${{ always() }}
- name: Dump logs for archive
run: docker-compose -f docker-compose-integration.yml logs feeds > feeds-log.txt
run: docker compose -f docker-compose-integration.yml logs feeds > feeds-log.txt
working-directory: ./integration/
if: ${{ always() }}
- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
Expand Down

0 comments on commit 2cd3c97

Please sign in to comment.