From 056d7e070dc65a32992e481ea5e700a74011c986 Mon Sep 17 00:00:00 2001 From: Wanjohi Date: Thu, 23 Jan 2025 02:19:18 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9C=20fix(ci):=20Fix=20the=20runner.ym?= =?UTF-8?q?l?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/runner.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/runner.yml b/.github/workflows/runner.yml index dd79f7b1..cff63731 100644 --- a/.github/workflows/runner.yml +++ b/.github/workflows/runner.yml @@ -111,6 +111,11 @@ jobs: - name: Setup Docker Buildx uses: docker/setup-buildx-action@v3 + - + name: Set Swap Space + uses: pierotofy/set-swap-space@master + with: + swap-size-gb: 10 - name: Cache Docker layers uses: actions/cache@v4 @@ -127,11 +132,11 @@ jobs: context: ./ push: true cache-from: type=local,src=/tmp/.buildx-cache - cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + cache-to: type=local,dest=/tmp/.buildx-cache,mode=max tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - - - name: Move cache - run: | - rm -rf /tmp/.buildx-cache - mv /tmp/.buildx-cache-new /tmp/.buildx-cache \ No newline at end of file + # - + # name: Move cache + # run: | + # rm -rf /tmp/.buildx-cache + # mv /tmp/.buildx-cache-new /tmp/.buildx-cache \ No newline at end of file