Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 24220f8

Browse files
committed
ci: add clean up disk space v3
1 parent a282502 commit 24220f8

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

.github/workflows/unit-tests.yml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,20 @@ jobs:
1818
- name: Clean up disk space
1919
run: |
2020
df -h
21-
sudo rm -rf /usr/share/dotnet
22-
df -h
23-
sudo rm -rf /opt/ghc
24-
df -h
25-
sudo rm -rf "/usr/local/share/boost"
26-
df -h
27-
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
28-
df -h
29-
sudo rm -rf /usr/local/lib/android
30-
df -h
21+
sudo rm -rf \
22+
/usr/lib/mono \
23+
/usr/local/julia* \
24+
/usr/local/lib/android \
25+
/usr/local/lib/node_modules \
26+
/usr/local/share/chromium \
27+
/usr/local/share/powershell \
28+
/usr/share/dotnet \
29+
/usr/share/swift \
30+
/opt/google/chrome \
31+
/opt/microsoft/msedge \
32+
/opt/microsoft/powershell \
33+
"$AGENT_TOOLSDIRECTORY"
34+
df -h /
3135
- name: Checkout code
3236
uses: actions/checkout@v4
3337
with:

0 commit comments

Comments
 (0)