From c2a562b82e842fcb4e74d861765ae0bcac44d38c Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Wed, 14 Jun 2023 11:45:03 +0530 Subject: [PATCH] ci: debug patch workflow failure (#21369) --- .github/workflows/patch-mariadb-tests.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/patch-mariadb-tests.yml b/.github/workflows/patch-mariadb-tests.yml index 066173af25..864661ef54 100644 --- a/.github/workflows/patch-mariadb-tests.yml +++ b/.github/workflows/patch-mariadb-tests.yml @@ -148,4 +148,11 @@ jobs: - name: Show bench output if: ${{ always() }} - run: cat ~/frappe-bench/bench_start.log || true + run: | + cd ~/frappe-bench + cat bench_start.log || true + cd logs + for f in ./*.log*; do + echo "Printing log: $f"; + cat $f + done