Skip to content

Commit

Permalink
Attempt to free up more disk space
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Hartnell committed Aug 14, 2024
1 parent 6660b23 commit a9efb44
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/test_tube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,16 @@ jobs:

# https://github.com/orgs/community/discussions/25678
- name: Free up disk space on runner
run: df -h && rm -rf /usr/share/dotnet/ && df -h
run: |
df -h
rm -rf /usr/share/dotnet/
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y azure-cli google-cloud-sdk hhvm google-chrome-stable powershell mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
df -h
shell: bash

- name: Install latest nightly toolchain
uses: actions-rs/toolchain@v1
Expand Down

0 comments on commit a9efb44

Please sign in to comment.