Skip to content

Commit

Permalink
Merge pull request #2198 from newrelic/free-up-disk
Browse files Browse the repository at this point in the history
AIT: clean up disk
  • Loading branch information
jtduffy authored Jan 13, 2025
2 parents a21d6e2 + 2e568d3 commit 8b3a92b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/Test-AITs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,13 @@ jobs:
# looks like docker is not properly sanitized between runs in GHA
# so its disk space may be pilling up and blows up during our tests
- name: Clean Docker image data
run: docker rmi $(docker images -q)
# other cleanups were suggested on runner-images repo
- name: Clean up disk
run: |
docker rmi $(docker images -q)
sudo apt clean
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
## JDK Installs

Expand Down

0 comments on commit 8b3a92b

Please sign in to comment.