Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianElvis committed Nov 20, 2024
1 parent ef17844 commit 85511ca
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -246,4 +246,11 @@ jobs:
sudo make -C contrib/images start-bcd-consumer-integration
- name: Run BCD consumer integration test
run: |
sudo make test-e2e-cache-bcd-consumer-integration
sudo make test-e2e-cache-bcd-consumer-integration
- name: Dump docker logs
run: |
docker ps -a
for container in $(docker ps -a -q); do
echo "=== Logs for container $container ==="
docker logs $container
done

0 comments on commit 85511ca

Please sign in to comment.