diff options
Diffstat (limited to '.github/scripts/docker-test.sh')
-rwxr-xr-x | .github/scripts/docker-test.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/scripts/docker-test.sh b/.github/scripts/docker-test.sh index 22821d17..0f5fa469 100755 --- a/.github/scripts/docker-test.sh +++ b/.github/scripts/docker-test.sh @@ -26,6 +26,10 @@ wait_for() { sleep 1 if [ "$i" -gt "$timeout" ]; then printf "Timed out!\n" + docker ps -a + echo "::group::Netdata container logs" + docker logs netdata 2>&1 + echo "::endgroup::" return 1 fi i="$((i + 1))" |