From 8a8ca501f4a5393f45a037d95716726aee20837e Mon Sep 17 00:00:00 2001 From: Francisco Edno Date: Thu, 11 Nov 2021 13:11:33 -0300 Subject: [PATCH] [wip] add logging to debug failing integration test --- .github/workflows/checks.yml | 1 + Makefile | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index effde1f..890ef91 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -200,6 +200,7 @@ jobs: run: | chmod a+x bin/wait-for-all.sh bin/wait-for-it.sh make platform + make platform-logs docker run -i --rm --net=host --sig-proxy=true --pid=host \ -v "${GITHUB_WORKSPACE}":"${GITHUB_WORKSPACE}" -w "${GITHUB_WORKSPACE}" php-avro-serde:7.4 \ vendor/bin/phpunit --group integration diff --git a/Makefile b/Makefile index 0601d57..0b20df7 100644 --- a/Makefile +++ b/Makefile @@ -75,6 +75,10 @@ platform: docker-compose up -d bin/wait-for-all.sh +platform-logs: + docker-compose ps + docker-compose logs schema_registry + clean: rm -rf build docker-compose down