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
Fix install-docker.sh to support ARM64 architecture
The script was hardcoded to download x86_64 Docker binaries, causing
"Exec format error" on ARM64 runners. This commit adds architecture
detection to download the appropriate binaries for both amd64 and arm64.
Changes:
- Add architecture detection using uname -m
- Map system architecture to Docker download paths (x86_64/aarch64)
- Map architecture to buildx binary names (amd64/arm64)
- Add informative echo to show detected architecture
- Add error handling for unsupported architectures
This fix is required for ARM64 integration tests to run successfully.
Signed-off-by: thc1006 <84045975+thc1006@users.noreply.github.com>
0 commit comments