From 4ab8502a271a8ac1aa9cdb9b792e882dc7586f51 Mon Sep 17 00:00:00 2001 From: Ankitsinghsisodya Date: Wed, 1 Apr 2026 13:51:11 +0530 Subject: [PATCH] ci: add free-disk-space cleanup to test-e2e-podman job All sibling E2E jobs free disk before running; test-e2e-podman was the only exception. It installs podman (large), so disk pressure is more likely here than anywhere else. --- .github/workflows/functions.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/functions.yaml b/.github/workflows/functions.yaml index 4512a041f6..143baf89a4 100644 --- a/.github/workflows/functions.yaml +++ b/.github/workflows/functions.yaml @@ -272,6 +272,14 @@ jobs: - uses: actions/checkout@v4 - uses: knative/actions/setup-go@main + - uses: endersonmenezes/free-disk-space@v3 + with: + remove_android: true + remove_dotnet: true + remove_haskell: true + remove_swap: true + rm_cmd: "rmz" # Faster than rm + - name: Start Podman run: sudo apt update && sudo apt install -y podman && podman system service --time=0 &