From 650a6345b1d77361dcbca73bc3480e536bfd8b1a Mon Sep 17 00:00:00 2001 From: Tommy Hughes Date: Mon, 10 Mar 2025 13:02:13 -0500 Subject: [PATCH] chore: Increase available VM storage for master_only action Signed-off-by: Tommy Hughes --- .github/workflows/build_wheels.yml | 10 ++++++++++ .github/workflows/master_only.yml | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 96e771b83b2..0f1d6f4056e 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -77,6 +77,16 @@ jobs: REGISTRY: quay.io/feastdev steps: - uses: actions/checkout@v4 + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@v1.3.1 + with: + android: true + dotnet: true + haskell: true + large-packages: false + docker-images: false + swap-storage: false + tool-cache: false - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx diff --git a/.github/workflows/master_only.yml b/.github/workflows/master_only.yml index 840a8007236..44da96556b8 100644 --- a/.github/workflows/master_only.yml +++ b/.github/workflows/master_only.yml @@ -99,6 +99,16 @@ jobs: REGISTRY: quay.io/feastdev-ci steps: - uses: actions/checkout@v4 + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@v1.3.1 + with: + android: true + dotnet: true + haskell: true + large-packages: false + docker-images: false + swap-storage: false + tool-cache: false - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx