Skip to content

Commit

Permalink
Add support for arm64-apple-darwin release/channel artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Jan 3, 2022
1 parent bbe5b66 commit 53777f2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ci/publish-tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion install/solana-install-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion scripts/solana-install-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/solana-install-update-manifest-keypair.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 53777f2

Please sign in to comment.