From 19dda11473ba686aea758d7ef688e761682464c6 Mon Sep 17 00:00:00 2001 From: Philipp Hoenisch Date: Tue, 22 Aug 2023 20:52:55 +0200 Subject: [PATCH] feat: show free disk space in CI helps with #1138 --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3c21990c..746db184d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -147,8 +147,13 @@ jobs: run: | docker-compose up -d sleep 10 # We need to give docker a bit of time to startup + - name: show disk space before tests + run: df -h - name: Test containers are up run: | curl -d '{"address":"bcrt1qylgu6ffkp3p0m8tw8kp4tt2dmdh755f4r5dq7s", "amount":"0.1"}' -H "Content-Type: application/json" -X POST http://localhost:3000/faucet - name: Run e2e tests run: just e2e --nocapture + - name: show disk space after tests + if: always() + run: df -h