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
awful_hack(ci): add vanilla rockylinux and gcc-toolset rockylinux
This commit is contained in:
committed by
Leonid Fedorov
parent
9a606f11dd
commit
ee3830f459
19
build/install_libc++.sh
Executable file
19
build/install_libc++.sh
Executable 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
|
Reference in New Issue
Block a user