ci: Test AArch64 Windows

This commit is contained in:
Taiki Endo
2025-06-29 22:27:47 +09:00
parent a27ef18d36
commit 8fcca280f3
3 changed files with 10 additions and 3 deletions

View File

@@ -538,7 +538,10 @@ case "$(uname -m)" in
# https://github.com/actions/runner/blob/v2.321.0/.github/workflows/build.yml#L21
# https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners#supported-architectures-and-operating-systems-for-self-hosted-runners
# So we can assume x86_64 unless it is AArch64 or Arm.
*) host_arch=x86_64 ;;
*)
# TODO: uname -m on windows-11-arm returns "x86_64"
host_arch=x86_64
;;
esac
info "host platform: ${host_arch}_${host_os}"