feat: build release images natively on arm64 (no QEMU)#11
Merged
Conversation
Switch the main Docker CI workflow from the QEMU-emulated multiarch build (docker-build.yml) to the native per-arch build flow (docker-build-native.yml), matching rolling.yml. amd64 builds on ubuntu-latest and arm64 builds on ubuntu-24.04-arm, then the per-arch digests are merged into a manifest list. This avoids emulating the arm64 Go/CGO build under QEMU. The two reusable workflows share an identical workflow_call interface, so this is a build-engine swap with no input changes. GHA cache scoping is handled per-arch automatically by the native workflow. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com>
kobergj
approved these changes
Jun 3, 2026
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
Switches the main Docker CI workflow (
.github/workflows/main.yml) from the QEMU-emulated multiarch build to the native per-arch build flow, matching whatrolling.ymlalready does (PR #10).amd64builds onubuntu-latest,arm64builds onubuntu-24.04-armThe two reusable workflows (
docker-build.yml→docker-build-native.yml) share an identicalworkflow_callinterface, so this is purely a build-engine swap — a single-lineuses:change with no input changes. GHA cache scoping is handled per-arch automatically by the native workflow.Test plan
buildjob fans out per-arch jobs for each release version (8.1.0-rc.1,8.0.4), runs Trivy + the oCIS smoke test (https://localhost:9200/status.php, version verified via.productversion), and skips push (push: false)🤖 Generated with Claude Code