chore(ci): find host files larger than 100M in docker directory
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Has started running
Build & Deploy / 🏗️ Build (push) Has been cancelled
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled

This commit is contained in:
2026-05-26 12:05:41 +02:00
parent f61f1411cb
commit 3728c37dce

View File

@@ -55,6 +55,8 @@ jobs:
docker run --rm -v /:/host-root alpine df -h || true
echo "=== Host Inode Usage ==="
docker run --rm -v /:/host-root alpine df -i || true
echo "=== Host Large Files (>100M) ==="
docker run --rm -v /:/host-root alpine find /host-root/mnt/HC_Volume_104796416/docker -type f -size +100M -exec du -sh {} + || true
echo "=== Host Docker Info ==="
docker info || true
echo "Purging old build layers, unused volumes and images..."