From a04cddbd4f0a5829ba4d70f421c5d85fb0c5209f Mon Sep 17 00:00:00 2001 From: Maciej Borzecki Date: Mon, 17 Feb 2025 09:13:47 +0100 Subject: [PATCH] spread: include disk space information when debugging nested suites Include the output of df so that we know how much space is left on disk. Signed-off-by: Maciej Borzecki --- spread.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spread.yaml b/spread.yaml index 1f5e5342019..397cf8970b6 100644 --- a/spread.yaml +++ b/spread.yaml @@ -607,6 +607,9 @@ debug-each: | go version || true if tests.nested is-nested; then + echo '# free space on the host' + df -h || true + echo '# nested VM status' tests.nested vm status # filter out ^[ to ensure that the debug output gets not messed up