We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d654ba commit ab701eaCopy full SHA for ab701ea
.github/workflows/ci.yml
@@ -31,12 +31,18 @@ jobs:
31
matrix:
32
compiler: [gcc]
33
steps:
34
- - name: Free Disk Space
+ - name: Analyze Disk Usage
35
run: |
36
- sudo rm -rf /usr/share/dotnet
37
- sudo rm -rf /usr/local/lib/android
38
- sudo rm -rf /opt/ghc
39
- sudo rm -rf "$AGENT_TOOLSDIRECTORY"
+ df -h
+ echo "--- Large Directories (Depth 2) ---"
+ sudo du -h --max-depth=2 --exclude=/proc --exclude=/sys --exclude=/dev /usr /opt /var | sort -rh | head -n 20
+
40
+ # - name: Free Disk Space
41
+ # run: |
42
+ # sudo rm -rf /usr/share/dotnet
43
+ # sudo rm -rf /usr/local/lib/android
44
+ # sudo rm -rf /opt/ghc
45
+ # sudo rm -rf "$AGENT_TOOLSDIRECTORY"
46
47
- uses: actions/checkout@v4
48
with:
0 commit comments