1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

chore(ci): add retries for the installations, fix colors for ci, clear apt cache, fix deps missing on CI stage by moving step to the beginnig

This commit is contained in:
Leonid Fedorov
2025-06-02 13:18:38 +00:00
committed by Leonid Fedorov
parent b2c0106c93
commit 7c7026253a
5 changed files with 430 additions and 385 deletions

View File

@ -58,10 +58,10 @@ else
fi
if [[ $(compgen -G "./${RESULT}/*.rpm") ]]; then
dnf install -q -y createrepo
retry_eval 5 "dnf install -q -y createrepo"
createrepo "./${RESULT}"
else
apt update && apt install -y dpkg-dev
retry_eval 5 "apt update && apt install -y dpkg-dev"
dpkg-scanpackages "${RESULT}" | gzip >"./${RESULT}/Packages.gz"
fi