Skip to content

Commit

Permalink
fix: See if we can squeeze out some more room
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs committed Mar 6, 2024
1 parent 3ea2863 commit 4f9dbe1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,29 @@ jobs:
runs-on: ubuntu-latest
needs: collectInputs
steps:
- name: Largest files
run: du -aBM 2>/dev/null | sort -nr | head -n 50 | more

- name: Largest packages
run: dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 40

# https://github.com/orgs/community/discussions/25678#discussioncomment-5242449
- name: Delete huge unnecessary tools folder
run: |
df -h
rm -rf /opt/hostedtoolcache/CodeQL
rm -rf /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk
rm -rf /opt/hostedtoolcache/Ruby
rm -rf /opt/hostedtoolcache/go
# And a little bit more
# sudo apt-get remove -y '^ghc-8.*'
# sudo apt-get remove -y '^dotnet-.*'
# sudo apt-get remove -y '^llvm-.*'
# sudo apt-get remove -y 'php.*'
# sudo apt-get remove -y azure-cli google-cloud-sdk hhvm google-chrome-stable firefox powershell mono-devel
# sudo apt-get autoremove -y
# sudo apt-get clean
df -h
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 4f9dbe1

Please sign in to comment.