From 0824ee75ee68efafc6acba095f20a7d1e412d1f4 Mon Sep 17 00:00:00 2001 From: Judit Novak Date: Mon, 16 Oct 2023 11:31:55 +0200 Subject: [PATCH] Free up space on pipeline --- .github/workflows/ci.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 33e1a3c17..5a81bb9e5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -106,6 +106,13 @@ jobs: uses: actions/download-artifact@v3 with: name: ${{ needs.build.outputs.artifact-name }} + - name: Free up disk space + run: | + # From https://github.com/actions/runner-images/issues/2840#issuecomment-790492173 + sudo rm -rf /usr/share/dotnet + sudo rm -rf /opt/ghc + sudo rm -rf /usr/local/share/boost + sudo rm -rf "$AGENT_TOOLSDIRECTORY" - name: Select tests id: select-tests run: |