Skip to content

Commit

Permalink
fix: mac環境でディスク容量不足が発生しているため、Android SDKの削除を試みる
Browse files Browse the repository at this point in the history
Signed-off-by: Zenichi Amano <crow.misia@gmail.com>
  • Loading branch information
crow-misia committed Sep 5, 2024
1 parent b9a0d26 commit 922968e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions disk_cleanup_mac.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

df -h

# Android SDK の削除
sudo rm -rf /Users/runner/Library/Android/sdk

df -h

0 comments on commit 922968e

Please sign in to comment.