Skip to content

Commit e0c7668

Browse files
b-zeeclaude
andcommitted
ci: free disk space before Android build
Remove pre-installed .NET, Haskell, CodeQL, and unused Docker images to prevent "No space left on device" errors during Android build. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent b870faf commit e0c7668

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/android.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ jobs:
1414
cancel-in-progress: true
1515

1616
steps:
17+
- name: Free disk space
18+
run: |
19+
sudo rm -rf /usr/share/dotnet
20+
sudo rm -rf /opt/ghc
21+
sudo rm -rf /opt/hostedtoolcache/CodeQL
22+
sudo docker image prune --all --force
23+
df -h
24+
1725
- uses: actions/checkout@v4
1826
with:
1927
submodules: true

0 commit comments

Comments
 (0)