1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

more cpack troubles

This commit is contained in:
Leonid Fedorov
2024-08-12 16:02:59 +04:00
parent b40d3f8ada
commit 7bc0a89e8a
2 changed files with 2 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ local Pipeline(branch, platform, event, arch='amd64', server='10.6-enterprise')
'mkdir -p /drone/src/' + result,
'ls -al fdb_build/packages',
'cp fdb_build/packages/*.' + pkg_format + ' /drone/src/' + result,
if(pkg_format == 'rpm') then 'createrepo ./' + result else 'dpkg-scanpackages %s | gzip > ./%s/Packages.gz' % [result, result],
if(pkg_format == 'rpm') then 'createrepo /drone/src/' + result else 'dpkg-scanpackages /drone/src/%s | gzip > /drone/src/%s/Packages.gz' % [result, result],
],
},
] +

View File

@@ -64,7 +64,7 @@ if [[ ${ID} == 'ubuntu' || ${ID} == 'debian' ]]; then
PACKAGES_SUFFIX="-DDEB=${VERSION_CODENAME}"
print_env
ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime
DEBIAN_FRONTEND=noninteractive apt install -y -qq automake cmake curl g++ gcc git jq libjemalloc-dev libssl-dev mono-devel patch python3-dev unzip
DEBIAN_FRONTEND=noninteractive apt install -y -qq automake cmake curl file g++ gcc git jq libjemalloc-dev libssl-dev mono-devel patch python3-dev unzip
elif [[ ${ID} == "rocky" ]]; then
PKG_MANAGER='yum install -y'