1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

awful_hack(ci): add vanilla rockylinux and gcc-toolset rockylinux

This commit is contained in:
Leonid Fedorov
2025-07-15 23:18:56 +00:00
committed by Leonid Fedorov
parent 9a606f11dd
commit ee3830f459
3 changed files with 41 additions and 17 deletions

19
build/install_libc++.sh Executable file
View File

@ -0,0 +1,19 @@
#!/bin/bash
set -eo pipefail
SCRIPT_LOCATION=$(dirname "$0")
source "$SCRIPT_LOCATION"/utils.sh
VERSION="$1"
if [[ $# -ne 1 ]]; then
echo "Please pass clang-version as a first parameter"
exit 1
fi
change_ubuntu_mirror us
message "Installing libc++-${VERSION}"
retry_eval 5 apt-get clean && apt-get update && apt-get install -y libc++-${VERSION}-dev libc++abi-${VERSION}-dev