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
feat: add multi-architecture support (amd64 + arm64)
Enable ARM64 (Apple Silicon, AWS Graviton) support for all PostGIS
Docker images by publishing multi-arch manifests to Docker Hub.
Changes:
Templates & Dockerfiles:
- Disable JIT during regression tests (`--jit=off`) to prevent
spinlock crashes under QEMU emulation on ARM64 (#393)
- Use absolute path for regress directory
CI Workflow:
- Push arch-tagged images from both amd64 and arm64 runners
(previously only amd64 pushed)
- Add manifest creation job that combines arch-specific images
into multi-arch manifests after all builds complete
README:
- Update supported architectures to include arm64
The existing build matrix already runs on both ubuntu-24.04 (amd64)
and ubuntu-24.04-arm (arm64) runners. This change enables the arm64
builds to be published alongside amd64, with Docker manifest lists
providing automatic platform selection for users.
Fixes#216Fixes#393Closes#387
0 commit comments