Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/actions/check-disk-space/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ runs:
# Also try to clean up torch.hub caching directory
rm -rf "${HOME}/.cache/torch/hub" || true

# Purge conda
conda clean -p -t -y || true
# and pip cache
pip cache purge || true

echo "Re-run disk space check for ${RUNNER_OS} after cleaning up"
# Re-run the check
RESULT=$(check_disk_space)
Expand Down