From 458789f8522c51e261eb42e2e862e143fb74e51d Mon Sep 17 00:00:00 2001 From: Aaron Prindle Date: Tue, 17 Oct 2023 18:02:30 -0700 Subject: [PATCH] fix: resolve issue with integration tests where lack of disk space caused k3s issues (#2804) --- .github/workflows/integration-tests.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/integration-tests.yaml b/.github/workflows/integration-tests.yaml index d3815a75cd..548eae9c8a 100644 --- a/.github/workflows/integration-tests.yaml +++ b/.github/workflows/integration-tests.yaml @@ -26,6 +26,12 @@ jobs: - k8s-executor-build-push integration-test-k8s steps: + - name: Maximize build space + uses: AdityaGarg8/remove-unwanted-software@v1 + with: + remove-android: 'true' + remove-dotnet: 'true' + remove-haskell: 'true' - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 with: go-version: '1.20'