You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The arm64 container currently builds in an emulated arm64 host via qemu-user. It would be much more efficient to cross-build from amd64 by having the Dockerfile specify FROM --platform=$BUILDPLATFORM for the builder container and set GOARCH=$TARGETARCH. However, Buildah < 1.24.1 doesn't support --platform in FROM. Once a new enough Buildah has landed in ubuntu-latest, switch to cross-building, and re-enable arm64 container builds in PRs by dropping the pr-arches override.
The arm64 container currently builds in an emulated arm64 host via qemu-user. It would be much more efficient to cross-build from amd64 by having the Dockerfile specify
FROM --platform=$BUILDPLATFORM
for the builder container and setGOARCH=$TARGETARCH
. However, Buildah < 1.24.1 doesn't support--platform
inFROM
. Once a new enough Buildah has landed inubuntu-latest
, switch to cross-building, and re-enablearm64
container builds in PRs by dropping thepr-arches
override.Followup to #333. See also coreos/ignition#1337.
The text was updated successfully, but these errors were encountered: