We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 09147bf + 7430aec commit 8abb1a8Copy full SHA for 8abb1a8
.github/workflows/standalone-installers.yaml
@@ -37,6 +37,8 @@ jobs:
37
os:
38
- ubuntu-22.04
39
- ubuntu-24.04
40
+ - ubuntu-22.04-arm
41
+ - ubuntu-24.04-arm
42
- macos-15-intel
43
- macos-14 # (aarch64)
44
- macos-15 # (aarch64)
bin/standalone-installer-unix
@@ -109,7 +109,9 @@ target-triple() {
109
110
case "$KERNEL" in
111
Linux)
112
- [[ "$machine" == x86_64 ]] || die "unsupported architecture: $machine"
+ [[ "$machine" == x86_64 ]] \
113
+ || ([[ "$machine" == aarch64 ]] && version-gte 10.4.2) \
114
+ || die "unsupported architecture: $machine"
115
vendor=unknown
116
os=linux-gnu
117
;;
0 commit comments