Skip to content

Commit e91aa4f

Browse files
committed
debug diskspace
1 parent 499c163 commit e91aa4f

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,22 @@ jobs:
426426
if: ${{ matrix.job.postgres-version }}
427427
timeout-minutes: 2
428428
run: until pg_isready -h localhost; do sleep 1; done
429-
- run: poetry run trial tests
429+
- run: |
430+
(
431+
while true; do
432+
date
433+
df -h
434+
sleep 10
435+
done
436+
) &
437+
MONITOR_PID=$!
438+
439+
poetry run trial tests
440+
STATUS=$?
441+
442+
kill $MONITOR_PID
443+
exit $STATUS
444+
430445
env:
431446
SYNAPSE_POSTGRES: ${{ matrix.job.database == 'postgres' || '' }}
432447
SYNAPSE_POSTGRES_HOST: /var/run/postgresql

0 commit comments

Comments
 (0)