From e91aa4fd2faef0028d60bfcb412452fe97e22510 Mon Sep 17 00:00:00 2001 From: Olivier 'reivilibre Date: Wed, 6 Aug 2025 17:12:49 +0100 Subject: [PATCH] debug diskspace --- .github/workflows/tests.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4122f62d61..42aec895f8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -426,7 +426,22 @@ jobs: if: ${{ matrix.job.postgres-version }} timeout-minutes: 2 run: until pg_isready -h localhost; do sleep 1; done - - run: poetry run trial tests + - run: | + ( + while true; do + date + df -h + sleep 10 + done + ) & + MONITOR_PID=$! + + poetry run trial tests + STATUS=$? + + kill $MONITOR_PID + exit $STATUS + env: SYNAPSE_POSTGRES: ${{ matrix.job.database == 'postgres' || '' }} SYNAPSE_POSTGRES_HOST: /var/run/postgresql