Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbogo committed Jan 28, 2024
2 parents 6807304 + dd76f4f commit 2b0575e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@ def createDebRepo():
mkdir ../debs
find .. -maxdepth 1 -type f | xargs cp -t ../debs
cat ../conf/distributions
set +e
reprepro -b .. --ignore=wrongsourceversion include $VERSION_CODENAME ../*.changes
set -e
"""
),
],
Expand Down Expand Up @@ -245,7 +247,10 @@ def uploadDebArtifacts():
COMPONENTS="main main/debug"
fi
mkdir -p /packages/%(prop:tarbuildnum)s/%(prop:buildername)s
cd .. && cp -r debs conf db dists pool /packages/%(prop:tarbuildnum)s/%(prop:buildername)s/
cd ..
for dir in debs conf db dists pool; do
[[ -d $dir ]] && cp -r $dir /packages/%(prop:tarbuildnum)s/%(prop:buildername)s/
done
cat << EOF > /packages/%(prop:tarbuildnum)s/%(prop:buildername)s/mariadb.sources
X-Repolib-Name: MariaDB
Types: deb
Expand Down

0 comments on commit 2b0575e

Please sign in to comment.