Skip to content

Commit

Permalink
Free up disk space for Github Actions runner
Browse files Browse the repository at this point in the history
Free up disk space for Github Actions runner since the `test` stage
on the `Build + Test` workflow started to face disk space issues
after the upgrade to libp2p 0.42.2.
This removes some tools as stated in [this
comment](actions/runner-images#2840 (comment)).
  • Loading branch information
jsdanielh committed Feb 13, 2022
1 parent 570ab8d commit 3ed8ee7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build+test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
runs-on: ubuntu-20.04

steps:
- name: "Free up disk space"
run: sudo rm -rf /usr/share/dotnet && sudo rm -rf /opt/ghc && sudo rm -rf "/usr/local/share/boost" && sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
Expand Down

0 comments on commit 3ed8ee7

Please sign in to comment.