1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-04-18 21:44:02 +03:00

installation env helper

This commit is contained in:
Leonid Fedorov 2023-12-12 13:07:49 +00:00 committed by Leonid Fedorov
parent 063fa27c77
commit 588480c88d
2 changed files with 33 additions and 0 deletions

View File

@ -836,6 +836,9 @@ local Pipeline(branch, platform, event, arch='amd64', server='10.6-enterprise')
image: 'alpine/git', image: 'alpine/git',
commands: [ commands: [
"echo -e '\\e]8;;" + publish_pkg_url + '\\e\\\\' + publish_pkg_url + "\\e]8;;\\e\\\\'", "echo -e '\\e]8;;" + publish_pkg_url + '\\e\\\\' + publish_pkg_url + "\\e]8;;\\e\\\\'",
"echo 'for installation run:'",
"export OS="+result,
"export PACKAGES_URL="+packages_url,
], ],
}, },
] + ] +

View File

@ -0,0 +1,30 @@
Without limitation of generality let's set we want to install packages from nightly build
https://ci.columnstore.mariadb.net/mariadb-corporation/mariadb-columnstore-engine/9294/1/11
First go to the build step 'publish pkg url', copy the <url>
like https://cspkg.s3.amazonaws.com/index.html?prefix=stable-23.10/cron/9294/10.6-enterprise/amd64/centos7/
remove index.html?prefix= and last two pathes from url and
run
``export PACKAGES_URL=https://cspkg.s3.amazonaws.com/stable-23.10/cron/9294/10.6-enterprise`` and
run ``export OS=centos7``
get the ``https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-engine/develop/setup-repo.sh``
using wget or curl
run ``bash setup-repo.sh``
for rocky linux run ``yum install epel-release procps``
then install columnstore
like
``yum install MariaDB-columnstore-engine.x86_64 MariaDB-columnstore-cmapi.x86_64`` for rockys
or
``apt install mariadb-columnstore-cmapi mariadb-plugin-columnstore` for debians``