From 9e7273214090231e9b0495c45f804b0e2ffac690 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sun, 2 Jan 2022 21:44:29 +0100 Subject: [PATCH] More free space on Github runners to fix failing tests Signed-off-by: Alexander Borsuk --- .github/workflows/linux-check.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/linux-check.yaml b/.github/workflows/linux-check.yaml index 44bdcc552a..9a020d34cd 100644 --- a/.github/workflows/linux-check.yaml +++ b/.github/workflows/linux-check.yaml @@ -27,6 +27,11 @@ jobs: CMAKE_BUILD_TYPE: [Debug, RelWithDebInfo] steps: + - name: Free disk space by removing .NET, Android and Haskell + shell: bash + run: | + sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc + - name: Checkout sources uses: actions/checkout@v2