Add multi-arch support with manifest lists - #155
Merged
Merged
Conversation
hyness
force-pushed
the
test-arm-builds
branch
10 times, most recently
from
April 4, 2026 21:57
4a27cc4 to
79013fc
Compare
- Use imageRegistry property to construct image name in build script - Use --imagePlatform CLI flag for arch targeting - Build both x64 and arm images with arch-specific tags - Create manifest lists for consumer-facing tags - Simplify integration tests to single matrix (14 jobs instead of 28) - Fix missing quote in generate-docker-tags.yml BUILD_VERSION - Pin localstack to 3.8.1 (auth required in newer versions) - Override Testcontainers socat image for ARM compatibility Co-authored-by: Alex Kurdyukov <akurdyukov@users.noreply.github.com>
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.
Summary
generate-docker-tags.ymlBUILD_VERSION generationHow it works
5.0.1-jre17-x64,5.0.1-jre17-arm)5.0.1-jre17) pointing to both arch imagesChanges
build.gradle.kts— ReadDOCKER_TAGSfrom env var; support--imagePlatformCLI flag.github/workflows/ci.yml— Build both archs, test on both archs with arch-specific tags.github/workflows/release.yml— Build both archs, create manifest lists for consumer tags.github/workflows/build-and-deploy-image.yml— Pass--imagePlatformand append arch to tags.github/workflows/generate-docker-tags.yml— Fix missing quote in BUILD_VERSIONexamples/aws/*/compose.yml— Pin localstack to 3.8.1Co-authored-by: Alex Kurdyukov akurdyukov@users.noreply.github.com