From 4203bfc1dbf76858ddb05fbe885a9af7071a296e Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Thu, 17 Dec 2020 11:46:41 -0700 Subject: [PATCH] chore: add clean disk step to linux-arm64 --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4628e755c0e0..64be6892c814 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -68,6 +68,11 @@ jobs: needs: release runs-on: ubuntu-arm64-latest steps: + - name: free disk space + run: | + sudo swapoff -a + sudo rm -f /swapfile + sudo apt clean - uses: actions/checkout@v1 with: fetch-depth: 1