Skip to content

Commit

Permalink
AIT: clean up disk
Browse files Browse the repository at this point in the history
  • Loading branch information
meiao committed Jan 10, 2025
1 parent a21d6e2 commit 2e568d3
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 2e568d3

Please sign in to comment.