You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
chore(ci): fix arch
This commit is contained in:
committed by
Leonid Fedorov
parent
449029a827
commit
a27f1a1f98
@ -28,7 +28,7 @@ fi
|
|||||||
|
|
||||||
select_pkg_format ${OS}
|
select_pkg_format ${OS}
|
||||||
|
|
||||||
if [[ "$(arch)" == "arm64" ]]; then
|
if [[ "$(arch)" == "arm64" || "$(arch)" == "aarch64" ]]; then
|
||||||
export CC=gcc
|
export CC=gcc
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ install_deps() {
|
|||||||
|
|
||||||
if [ "$(arch)" == "x86_64" ]; then
|
if [ "$(arch)" == "x86_64" ]; then
|
||||||
PYTHON_URL="https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13+20220802-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst"
|
PYTHON_URL="https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13+20220802-x86_64_v2-unknown-linux-gnu-pgo+lto-full.tar.zst"
|
||||||
elif [ "$(arch)" == "arm64" ]; then
|
elif [[ "$(arch)" == "arm64" || "$(arch)" == "aarch64" ]]; then
|
||||||
PYTHON_URL="https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13+20220802-aarch64-unknown-linux-gnu-noopt-full.tar.zst"
|
PYTHON_URL="https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13+20220802-aarch64-unknown-linux-gnu-noopt-full.tar.zst"
|
||||||
else
|
else
|
||||||
echo "Unsupported architecture: $(arch)"
|
echo "Unsupported architecture: $(arch)"
|
||||||
|
Reference in New Issue
Block a user