Skip to content

Commit 4c77083

Browse files
authored
Remove arm architecture form YDB CLI installation script (#10210)
1 parent 810d5d5 commit 4c77083

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

ydb/apps/ydb/install/install.sh

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ SYSTEM=${YDB_INSTALL_TEST_SYSTEM:-$(uname -s)} # $(uname -o) is not supported on
3333
MACHINE=${YDB_INSTALL_TEST_MACHINE:-$(uname -m)}
3434

3535
GOOS=""
36-
GOARCH=""
3736
YDB_BIN="ydb"
3837
SHELL_NAME=$(basename "${SHELL}")
3938

@@ -57,19 +56,6 @@ case ${SYSTEM} in
5756
;;
5857
esac
5958

60-
case ${MACHINE} in
61-
x86_64 | amd64 | i686-64)
62-
GOARCH="amd64"
63-
;;
64-
arm64)
65-
GOARCH="arm64"
66-
;;
67-
*)
68-
printf "'%s' machines are not supported yet, or something is going wrong.\\n%s" "${MACHINE}" "${CONTACT_SUPPORT_MESSAGE}"
69-
exit 1
70-
;;
71-
esac
72-
7359
DEFAULT_RC_PATH="${HOME}/.bashrc"
7460

7561
if [ "${SHELL_NAME}" != "bash" ]; then
@@ -153,7 +139,7 @@ trap cleanup EXIT
153139

154140
# Download and show progress.
155141
TMP_YDB="${TMP_INSTALL_PATH}/${YDB_BIN}"
156-
curl_with_retry "${YDB_STORAGE_URL}/release/${YDB_VERSION}/${GOOS}/${GOARCH}/${YDB_BIN}" -o "${TMP_YDB}"
142+
curl_with_retry "${YDB_STORAGE_URL}/release/${YDB_VERSION}/${GOOS}/amd64/${YDB_BIN}" -o "${TMP_YDB}"
157143

158144
chmod +x "${TMP_YDB}"
159145
# Check that all is ok, and print full version to stdout.

0 commit comments

Comments
 (0)