Merged
Conversation
|
@TonyRL is attempting to deploy a commit to the RSS3 Team on Vercel. A member of the Team first needs to authorize it. |
SafeDep Report SummaryNo dependency changes detected. Nothing to scan. This report is generated by SafeDep Github App |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR addresses disk space issues in the Android build workflow by adding a cleanup step that removes unused toolchains and development tools from GitHub-hosted runners. The change aims to prevent "No space left on device" errors encountered during APK builds by freeing up approximately 16GB of disk space.
- Adds a disk cleanup step that removes dotnet, ghcup, CodeQL, Swift, and Julia installations
- Includes before/after disk space diagnostics using
df -h / - Positions the cleanup step before code checkout to maximize available space during the build
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Hopefully address the issue of https://github.com/RSSNext/Folo/actions/runs/20552478820
System.IO.IOException: No space left on devicewhen building APK.$ du -sh /usr/share/dotnet 4.0G /usr/share/dotnet $ du -sh /usr/local/.ghcup 6.4G /usr/local/.ghcup $ du -sh /opt/hostedtoolcache/CodeQL 1.7G /opt/hostedtoolcache/CodeQL $ du -sh /usr/share/swift 3.2G /usr/share/swift $ du -sh /usr/local/julia* 1015M /usr/local/julia1.12.2Running those we've got
PR Type
Screenshots (if UI change)
Demo Video (if new feature)
Linked Issues
Additional context
actions/runner-images#2840
Changelog