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

@@ -124,7 +124,10 @@ esac
case "$(uname -m)" in
aarch64 | arm64) host_arch=aarch64 ;;
xscale | arm | armv*l) bail "32-bit Arm runner is not supported yet by this action; if you need support for this platform, please submit an issue at <https://github.com/taiki-e/install-action>" ;;
*) host_arch=x86_64 ;;
*)
# TODO: uname -m on windows-11-arm returns "x86_64"
host_arch=x86_64
;;
esac
tools=()