Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: unique build name per build, not per commit

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+2 -2
+2 -2
oven/native-builder.mjs
··· 363 363 // Pre-build: prune stopped containers and dangling images to avoid disk-full failures 364 364 addLogLine(job, "stdout", "Pre-build: Pruning Docker artifacts..."); 365 365 try { 366 - await runPhase(job, "prune", "docker", [ 367 - "system", "prune", "-af", "--filter", "until=1h", 366 + await runPhase(job, "prune", "bash", ["-c", 367 + "docker container prune -f && docker builder prune -af --filter until=30m", 368 368 ], repoDir); 369 369 } catch { addLogLine(job, "stdout", " Prune skipped (non-fatal)"); } 370 370