From a58d13baf35542604d5be8e11262baa5cf9c84dc Mon Sep 17 00:00:00 2001 From: Islam Ahmed Date: Sat, 4 May 2024 10:31:42 -0700 Subject: [PATCH] Update main.yml Try cleaning up --- .github/workflows/main.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 466932efd48b..ce803c8494bd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,10 +6,17 @@ jobs: update-symbols: permissions: contents: write - runs-on: ubuntu-22.04-4core + runs-on: ubuntu-latest strategy: fail-fast: false steps: + - name: free disk space + run: | + sudo swapoff -a + sudo rm -f /swapfile + sudo apt clean + docker rmi $(docker image ls -aq) + df -h - uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4