Skip to content

Commit

Permalink
Compact parallel cleaner?
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Wieczorek <[email protected]>
  • Loading branch information
twz123 committed Oct 11, 2023
1 parent e6b902f commit 97683ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cleaner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
steps:
- name: Cleaner
run: |
set +eu # don't care about errors, yolo!
set -x
df -h /
docker system prune --all --force >/dev/null &
sudo rm -rf /imagegeneration/installers >/dev/null &
docker system prune --all --force || true >/dev/null &
sudo rm -rf /imagegeneration/installers || true >/dev/null &
if [ -n "${ANDROID_SDK_ROOT-}" ]; then
sudo rm -rf -- "$ANDROID_SDK_ROOT"|| true >/dev/null &
fi
wait
df -h /
Expand Down

0 comments on commit 97683ee

Please sign in to comment.