chore(ci): clear stale builder image before docker check (BUNYIP-231) #259
Loading…
Reference in a new issue
No description provided.
Delete branch "chore/checks-workflow-9c0ac500"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The check.yml "Docker builder stage" step builds the api image's builder
target and tags it
bunyip-api-builder:check. On the persistent runner theimage store is reused between jobs, and buildkit's exporter refuses to
overwrite an existing tag, so the second and later runs failed with
image "docker.io/library/bunyip-api-builder:check": already existseventhough fmt, clippy, build, and tests all passed.
Drop any builder image a prior run left behind before rebuilding, mirroring
the
docker image rmcleanup the justfile'sdev-clean-allrecipe alreadyuses for the same tag. The
|| truekeeps the first run (tag absent) green.#BUNYIP-231