diff --git a/.github/workflows/standalone-installers.yaml b/.github/workflows/standalone-installers.yaml index 525fa3b7..bdb0792b 100644 --- a/.github/workflows/standalone-installers.yaml +++ b/.github/workflows/standalone-installers.yaml @@ -37,6 +37,8 @@ jobs: os: - ubuntu-22.04 - ubuntu-24.04 + - ubuntu-22.04-arm + - ubuntu-24.04-arm - macos-13 - macos-14 # (aarch64) - macos-15 # (aarch64) diff --git a/bin/standalone-installer-unix b/bin/standalone-installer-unix index e5fa9749..ff56ac0d 100755 --- a/bin/standalone-installer-unix +++ b/bin/standalone-installer-unix @@ -109,7 +109,9 @@ target-triple() { case "$KERNEL" in Linux) - [[ "$machine" == x86_64 ]] || die "unsupported architecture: $machine" + [[ "$machine" == x86_64 ]] \ + || ([[ "$machine" == aarch64 ]] && version-gte 10.4.2) \ + || die "unsupported architecture: $machine" vendor=unknown os=linux-gnu ;;