Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use compose subcommand instead of docker-compose #471

Merged
merged 2 commits into from
Aug 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading