Add linux/arm64 support to Docker images (Track 1: multi-arch alpine) - #382
Open
ibrahim halatci (ihalatci) wants to merge 3 commits into
Open
Add linux/arm64 support to Docker images (Track 1: multi-arch alpine)#382ibrahim halatci (ihalatci) wants to merge 3 commits into
ibrahim halatci (ihalatci) wants to merge 3 commits into
Conversation
Dispatch-only workflow that builds the alpine image natively on ubuntu-24.04-arm and verifies Citus compiles, loads, and runs on arm64. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 52d4e780-cd8c-405c-8944-5e3167ae4e59
Branch-scoped push trigger to exercise the arm64 runner + native build. To be removed before merge to master (workflow stays dispatch-only). Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 52d4e780-cd8c-405c-8944-5e3167ae4e59
Pin the 4 docker-publish workflows to citusdata/tools v0.8.38 (buildx engine with multi-arch support) and wire QEMU + Buildx setup. Gate arm64 via DOCKER_BUILD_MULTI_ARCH: master-gated on push/cron, always on for manual/tag publish paths. Revert arm64-alpine-smoke.yml to dispatch-only. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 52d4e780-cd8c-405c-8944-5e3167ae4e59
ibrahim halatci (ihalatci)
requested a review
from Kardelen Ceren (KardelenCeren)
August 12, 2026 11:48
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.
What
Adds
linux/arm64support to the Citus alpine Docker image via Docker Buildx, and adds a smoke-test workflow to validate arm64 alpine builds. Driven by citusdata/citus#8612.This is Track 1 of a two-track effort. The alpine image compiles Citus from source, so arm64 works today via buildx. (Track 2 — Debian images — is blocked on upstream arm64
.debpackages and is not part of this PR.)Changes
publish_docker_images_{on_push,cron,on_manual,on_tag}.yml):citusdata/toolsclone to v0.8.38 — the stable tag containing the buildx multi-arch engine from citusdata/tools#414.DOCKER_BUILD_MULTI_ARCHenv: master-gated ('1'on master,'0'elsewhere) on theon_push/cronwildcard triggers so feature-branch pushes stay amd64-fast; always"1"on the publish-onlyon_manual/on_tagpaths.arm64-alpine-smoke.yml: newworkflow_dispatch-only smoke test that builds the alpine image forlinux/arm64and runs a basic container check.The engine only emits
linux/amd64,linux/arm64for the alpine image type and whenDOCKER_BUILD_MULTI_ARCHis truthy — so all other image types and the default path are unchanged (amd64 only).Validation
linux/amd64andlinux/arm64.Related work items