From df47073fa433011df9c1cab522d2daa5eace148b Mon Sep 17 00:00:00 2001 From: Nikita Pivkin Date: Mon, 6 Nov 2023 03:25:58 +0000 Subject: [PATCH] ci: use maximize build space for K8s tests (#5387) --- .github/workflows/test.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b5bb5736cfc..b000f9dace3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -88,6 +88,15 @@ jobs: name: K8s Integration Test runs-on: ubuntu-latest steps: + - name: Maximize build space + uses: easimon/maximize-build-space@v8 + with: + root-reserve-mb: 35840 # The Go cache (`~/.cache/go-build` and `~/go/pkg`) requires a lot of storage space. + remove-android: "true" + remove-docker-images: "true" + remove-dotnet: "true" + remove-haskell: "true" + - name: Check out code into the Go module directory uses: actions/checkout@v4.1.1