Fix dev Docker build OOM on ARM64 cu13 by adding docker system prune (#18947)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Kangyan-Zhou
2026-02-22 10:29:31 +08:00
committed by GitHub
parent 4653939cda
commit b2d8cc8cf0

View File

@@ -69,6 +69,11 @@ jobs:
large-packages: true
swap-storage: true
- name: Prune Docker to reclaim disk space
run: |
docker buildx prune --filter "until=72h" -f
docker system prune -af --volumes --filter "until=72h"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3