From 85f894f5793abd9c3f93ae1dd0df68110d200c03 Mon Sep 17 00:00:00 2001 From: Stuart Douglas Date: Thu, 7 Nov 2024 10:26:10 +1100 Subject: [PATCH] fix: smoke test disk space (#3338) --- .github/workflows/smoketest.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/smoketest.yml b/.github/workflows/smoketest.yml index 2d0d46abf5..904c7f8355 100644 --- a/.github/workflows/smoketest.yml +++ b/.github/workflows/smoketest.yml @@ -13,6 +13,13 @@ jobs: if: github.event_name != 'pull_request' || github.event.action == 'enqueued' || contains( github.event.pull_request.labels.*.name, 'run-all') runs-on: ubuntu-latest steps: + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + # this might remove tools that are actually needed, + # if set to "true" but frees about 6 GB + tool-cache: false + - name: Checkout the repository with full history uses: actions/checkout@v4 with: @@ -68,3 +75,7 @@ jobs: with: name: kube-report-smoke-test-upgrade path: /tmp/ftl-kube-report/ + - name: Print Disk Space + if: always() + run: | + df \ No newline at end of file