Add support for arm64-apple-darwin release/channel artifacts
This commit is contained in:
parent
bbe5b66324
commit
53777f2fbf
|
@ -39,7 +39,7 @@ fi
|
|||
|
||||
case "$CI_OS_NAME" in
|
||||
osx)
|
||||
TARGET=x86_64-apple-darwin
|
||||
TARGET=$(uname -m)-apple-darwin
|
||||
;;
|
||||
linux)
|
||||
TARGET=x86_64-unknown-linux-gnu
|
||||
|
|
|
@ -67,7 +67,7 @@ main() {
|
|||
TARGET=x86_64-unknown-linux-gnu
|
||||
;;
|
||||
Darwin)
|
||||
TARGET=x86_64-apple-darwin
|
||||
TARGET=$(uname -m)-apple-darwin
|
||||
;;
|
||||
*)
|
||||
err "machine architecture is currently unsupported"
|
||||
|
|
|
@ -31,7 +31,7 @@ fi
|
|||
|
||||
case "$OS" in
|
||||
osx)
|
||||
TARGET=x86_64-apple-darwin
|
||||
TARGET=$(uname -m)-apple-darwin
|
||||
;;
|
||||
linux)
|
||||
TARGET=x86_64-unknown-linux-gnu
|
||||
|
|
|
@ -9,7 +9,7 @@ OS=${1:-linux}
|
|||
|
||||
case "$OS" in
|
||||
osx)
|
||||
TARGET=x86_64-apple-darwin
|
||||
TARGET=$(uname -m)-apple-darwin
|
||||
;;
|
||||
linux)
|
||||
TARGET=x86_64-unknown-linux-gnu
|
||||
|
|
Loading…
Reference in New Issue