From 0a7e2559bba0935dd4483025791a798f980321ad Mon Sep 17 00:00:00 2001 From: Zenichi Amano Date: Thu, 5 Sep 2024 12:58:52 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20mac=E7=92=B0=E5=A2=83=E3=81=A7=E3=83=87?= =?UTF-8?q?=E3=82=A3=E3=82=B9=E3=82=AF=E5=AE=B9=E9=87=8F=E4=B8=8D=E8=B6=B3?= =?UTF-8?q?=E3=81=8C=E7=99=BA=E7=94=9F=E3=81=97=E3=81=A6=E3=81=84=E3=82=8B?= =?UTF-8?q?=E3=81=9F=E3=82=81=E3=80=81Android=20SDK=E3=81=AE=E5=89=8A?= =?UTF-8?q?=E9=99=A4=E3=82=92=E8=A9=A6=E3=81=BF=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Zenichi Amano --- .github/workflows/build.yml | 2 ++ disk_cleanup_mac.sh | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100755 disk_cleanup_mac.sh diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3712194b..e3d4de20 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,6 +48,8 @@ jobs: runs-on: macos-14 steps: - uses: actions/checkout@v4 + - name: Disk Cleanup + run: ./disk_cleanup_mac.sh - name: Build run: make -C build USE_CCACHE=0 ${{ matrix.name }} - name: Upload artifact diff --git a/disk_cleanup_mac.sh b/disk_cleanup_mac.sh new file mode 100755 index 00000000..6e4dbd66 --- /dev/null +++ b/disk_cleanup_mac.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +df -h + +# Android SDK の削除 +sudo rm -rf /Users/runner/Library/Android/sdk + +df -h