Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork795
Speedup theFree Disk Space
CI step#4310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Speedup theFree Disk Space
CI step#4310
Uh oh!
There was an error while loading.Please reload this page.
Conversation
How does the performance compare with |
alexisfontaine commentedSep 20, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
You're right to question that claim – I hadn't actually benchmarked I've been looking into how the Rust project currently handles this, and it seems they've builttheir own script based on the Interestingly, there's a PR on that action (jlumbroso/free-disk-space#26) with some numbers. It seems benchmarking the different commands within the Leptos CI environment is the best way to determine if it's actually an improvement. |
Uh oh!
There was an error while loading.Please reload this page.
The
Free Disk Space
job in CI is a significant bottleneck (~5min on hundreds of jobs per workflow). This change replacesrm -rf
command withrmz
, which is apparently faster at deleting large directories.If preferred, I can try the more conventional
find -delete
command instead of adding a dependency.