Skip to content

Commit

Permalink
Test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinonard committed Sep 9, 2024
1 parent f1475d0 commit 607859f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/macos-disk-cleanup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Disk cleanup

on:
pull_request:
jobs:
test-disk-cleanup:
runs-on: macos-latest
steps:
# Temporary dirty fix
# https://github.com/actions/runner-images/issues/10511
- name: Disk Cleanup
run: |
xcrun simctl delete all || true
sudo rm -rf ~/Library/Developer/CoreSimulator/Caches/* || true
sudo rm -rfv /Users/runner/Library/Android/sdk || true
sudo rm -rf /Applications/Xcode_14.3.1.app || true
sudo rm -rf /Applications/Xcode_15.0.1.app || true
sudo rm -rf /Applications/Xcode_15.1.app || true
sudo rm -rf /Applications/Xcode_15.2.app || true
sudo rm -rf /Applications/Xcode_15.3.app || true
df -h

0 comments on commit 607859f

Please sign in to comment.