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
Copy file name to clipboardExpand all lines: tools/ci/tool-list.sh
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -110,6 +110,12 @@ case "$(uname -s)" in
110
110
;;
111
111
*) bail "unrecognized OS type '$(uname -s)'" ;;
112
112
esac
113
+
# See main.sh
114
+
case"$(uname -m)"in
115
+
aarch64 | arm64) host_arch=aarch64 ;;
116
+
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>" ;;
117
+
*) host_arch=x86_64 ;;
118
+
esac
113
119
114
120
tools=()
115
121
formanifestin tools/codegen/base/*.json;do
@@ -120,9 +126,13 @@ for manifest in tools/codegen/base/*.json; do
0 commit comments