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