Skip to content

Commit

Permalink
HACK: Free disk space on the runner
Browse files Browse the repository at this point in the history
  • Loading branch information
kateinoigakukun committed Feb 21, 2025
1 parent a71c5b7 commit 1c96d5c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build-swift-debugging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ jobs:
runs-on: ubuntu-22.04
timeout-minutes: 360
steps:
- name: Free disk space
run: |
df -h
sudo rm -rf /opt/hostedtoolcache
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /usr/local/.ghcup
sudo apt clean
if docker info > /dev/null 2>&1; then
docker rmi $(docker image ls -aq)
fi
df -h
- uses: actions/checkout@v4
- name: Create .gclient file
run: |
Expand Down

0 comments on commit 1c96d5c

Please sign in to comment.