From 54f239fc7f18b21d293336e230abbe648aac584b Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Thu, 15 Dec 2022 20:23:58 +0900 Subject: [PATCH] Update comments on GitHub Actions Runner --- main.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.sh b/main.sh index a7259c9d..f980e6d8 100755 --- a/main.sh +++ b/main.sh @@ -213,11 +213,14 @@ case "$(uname -m)" in # Ignore arm for now, as we need to consider the version and whether hard-float is supported. # https://github.com/rust-lang/rustup/pull/593 # https://github.com/cross-rs/cross/pull/1018 + # Does it seem only armv7l is supported? + # https://github.com/actions/runner/blob/6b9e8a6be411a6e63d5ccaf3c47e7b7622c5ec49/src/Misc/externals.sh#L174 bail "32-bit ARM runner is not supported yet by this action" ;; # GitHub Actions Runner supports Linux (x86_64, aarch64, arm), Windows (x86_64, aarch64), # and macOS (x86_64, aarch64). # https://github.com/actions/runner + # 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" ;; esac