You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
* MCOL-5496: Merge CMAPI code to engine repo. [add] cmapi code to engine * MCOL-5496: Fix CI adding CMAPI steps. [fix] deb packages deps commands [add] several additional local variables [fix] packages url [fix] smoke step [fix] mtr step [fix] regression step [add] cmapipython, cmapibuild, cmapitest and cmapilog steps [fix] dockerfile step [fix] build step to include cmapi package on repodata creating [fix] multi_node_mtr step [fix] pkg step [add] cmapi steps to pipelines [fix] cmapi/CMakeLists.txt to prevent cmake byte-compile .py files for rpm packages [add] setup-repo.sh file [fix] now use packages from the repos in tests steps * Adding color 2 build script * Build script and logging scripts from develop * Remove test 222 from full regression, it is missing in 23.02 regression set --------- Co-authored-by: mariadb-AlanMologorsky <alan.mologorsky@mariadb.com> Co-authored-by: mariadb-RomanNavrotskiy <roman.navrotskiy@mariadb.com>
20 lines
462 B
Bash
Executable File
20 lines
462 B
Bash
Executable File
SEC_TO_WAIT=15
|
|
echo -n "Waiting CMAPI to finish startup"
|
|
success=false
|
|
for i in $(seq 1 $SEC_TO_WAIT); do
|
|
echo -n "..$i"
|
|
if ! $(curl -k -s --output /dev/null --fail https://127.0.0.1:8640/cmapi/ready); then
|
|
sleep 1
|
|
else
|
|
success=true
|
|
break
|
|
fi
|
|
done
|
|
|
|
echo
|
|
if $success; then
|
|
echo "CMAPI ready to handle requests."
|
|
else
|
|
echo "CMAPI not ready after waiting $SEC_TO_WAIT seconds. Check log file for further details."
|
|
fi
|