1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00
This commit is contained in:
Leonid Fedorov
2024-08-08 17:28:49 +04:00
parent de0d6d58f1
commit b121cc8442

View File

@@ -48,7 +48,7 @@ if [[ ${ID} == 'ubuntu' || ${ID} == 'debian' ]]; then
PACKAGES_SUFFIX="-DDEB=${VERSION_CODENAME}" PACKAGES_SUFFIX="-DDEB=${VERSION_CODENAME}"
print_env print_env
ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime
DEBIAN_FRONTEND=noninteractive apt install -y -qq automake cmake curl g++ gcc git jq libjemalloc-dev mono-devel python3-dev unzip DEBIAN_FRONTEND=noninteractive apt install -y -qq automake cmake curl g++ gcc git jq libjemalloc-dev mono-devel patch python3-dev unzip
elif [[ ${ID} == "rocky" ]]; then elif [[ ${ID} == "rocky" ]]; then
PKG_MANAGER='yum' PKG_MANAGER='yum'
@@ -60,10 +60,7 @@ elif [[ ${ID} == "rocky" ]]; then
if [[ ${VERSION_ID} == "9.3" ]]; then if [[ ${VERSION_ID} == "9.3" ]]; then
message "Preparing dev requirements for Rockylinux 9" message "Preparing dev requirements for Rockylinux 9"
dnf install -y -q \ dnf install -y -q epel-release scl-utils yum-utils
epel-release \
scl-utils \
yum-utils
dnf install -y -q --allowerasing gcc-c++ dnf install -y -q --allowerasing gcc-c++
else else
message "Preparing dev requirements for Rockylinux 8" message "Preparing dev requirements for Rockylinux 8"
@@ -74,7 +71,7 @@ elif [[ ${ID} == "rocky" ]]; then
curl https://download.mono-project.com/repo/centos8-stable.repo | tee /etc/yum.repos.d/mono-centos8-stable.repo curl https://download.mono-project.com/repo/centos8-stable.repo | tee /etc/yum.repos.d/mono-centos8-stable.repo
fi fi
dnf install -y -q --allowerasing automake cmake curl dnf gcc git jemalloc-devel jq mono-devel python3-devel unzip dnf install -y -q --allowerasing automake cmake curl dnf gcc git jemalloc-devel jq mono-devel patch python3-devel unzip
else else
echo "Unsupported distribution. This script only supports Rocky[8|9], Ubuntu [20.04|22.04|24.04] Debian[11|12]" echo "Unsupported distribution. This script only supports Rocky[8|9], Ubuntu [20.04|22.04|24.04] Debian[11|12]"