From d3c1344dfedcdacb1d52b3bd7cc11d9bf5e2c0a1 Mon Sep 17 00:00:00 2001 From: NoriDev Date: Wed, 18 Oct 2023 17:20:05 +0900 Subject: [PATCH] fix: build docker images --- .github/workflows/docker-develop.yml | 14 ++++++++++++++ .github/workflows/docker.yml | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/.github/workflows/docker-develop.yml b/.github/workflows/docker-develop.yml index 07ad0610c0..5c5a6537d6 100644 --- a/.github/workflows/docker-develop.yml +++ b/.github/workflows/docker-develop.yml @@ -12,6 +12,20 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'kokonect-link/cherrypick' steps: + - name: Check free disk space + run: df -h + - name: Free Up GitHub Actions Ubuntu Runner Disk Space 🔧 + uses: jlumbroso/free-disk-space@main + with: + # This might remove tools that are actually needed, if set to "true" but frees about 6 GB + tool-cache: false + + # All of these default to true, but feel free to set to "false" if necessary for your workflow + android: true + dotnet: true + haskell: true + large-packages: true + swap-storage: true - name: Check out the repo uses: actions/checkout@v4.1.0 - name: Set up Docker Buildx diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a167e55daf..a0b2ef0c64 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -11,6 +11,20 @@ jobs: runs-on: ubuntu-latest steps: + - name: Check free disk space + run: df -h + - name: Free Up GitHub Actions Ubuntu Runner Disk Space 🔧 + uses: jlumbroso/free-disk-space@main + with: + # This might remove tools that are actually needed, if set to "true" but frees about 6 GB + tool-cache: false + + # All of these default to true, but feel free to set to "false" if necessary for your workflow + android: true + dotnet: true + haskell: true + large-packages: true + swap-storage: true - name: Check out the repo uses: actions/checkout@v4.1.0 - name: Set up Docker Buildx