ci: free up disk space before executing reproducible script #6441
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.
As you may have noticed, all your reproducible Actions have been failing for the past month: https://github.com/simplex-chat/simplex-chat/actions/workflows/reproduce-schedule.yml
It always fails with the same exception:
This error file contains the following error:
No space left on deviceIndeed, Github Actions jobs are limited to 14-22GB of free disk space, as you can see in this
df -houtput:Each job VM actually has 72 GB of total disk space, but only 22 GB free. GitHub Actions VMs come with many pre-installed binaries and resources (Android SDK, Java, .NET, Swift, vcpkg, etc.).
Since we do not need any of these for the reproducible script (we only need
docker), we can simply remove them.This cleanup frees up 23 GB of disk space, resulting in 55 GB of free space on the job VM, which is more than enough.