Rewrite Docker aspects of CI#1192
Merged
shepmaster merged 1 commit intomainfrom Feb 16, 2026
Merged
Conversation
A recent [GHA change][] updated to Docker 29, which causes build failures when we download / retag / push the image: ``` image with reference ghcr.io/integer32llc/rust-playground-ci-rust-beta:latest was found but does not provide the specified platform (linux/amd64) ``` I don't actually know what the deal is here, but I see that Docker 29 made changes to default container formats and started pushing multiple aspects of the image, including some attestation metadata as the platform `unknown/unknown`. My suspicion is that GHCR does not support this fully, so when we pull and push, something is lost and it's trying to push the attestation metadata which fails. To work around this, we can change the build process so that we always use `docker/build-push-action`, which does *something* different and works. We rely on the build caching so that "rebuilding" in multiple jobs is still fast. [GHA change]: actions/runner-images#13474
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A recent GHA change updated to Docker 29, which causes build failures when we download / retag / push the image:
I don't actually know what the deal is here, but I see that Docker 29 made changes to default container formats and started pushing multiple aspects of the image, including some attestation metadata as the platform
unknown/unknown.My suspicion is that GHCR does not support this fully, so when we pull and push, something is lost and it's trying to push the attestation metadata which fails.
To work around this, we can change the build process so that we always use
docker/build-push-action, which does something different and works. We rely on the build caching so that "rebuilding" in multiple jobs is still fast.