Skip to content
Snippets Groups Projects
Commit 5c583b58f39f authored by Laurent Peuch's avatar Laurent Peuch
Browse files

chore(tox): add deb-publish

parent 2f4d82c2ae0b
No related branches found
No related tags found
1 merge request!3chore(tox): add deb-publish
This commit is part of merge request !3. Comments created here will be created in the context of that merge request.
...@@ -21,3 +21,21 @@ ...@@ -21,3 +21,21 @@
python3 setup.py sdist bdist_wheel python3 setup.py sdist bdist_wheel
twine check dist/* twine check dist/*
twine upload --skip-existing dist/* twine upload --skip-existing dist/*
[testenv:deb-publish]
passenv = JENKINS_USER JENKINS_TOKEN
basepython = python3
skip_install = true
whitelist_externals =
rm
sh
hg
deps =
httpie
commands =
hg clean --all --dirs --files
rm -rf build dist .egg .egg-info
python3 setup.py sdist
sh -c "PACKAGE_NAME=$(python3 setup.py --name) && VERSION=$(python3 setup.py --version) && cd dist && tar xf $PACKAGE_NAME-$VERSION.tar.gz && cd $PACKAGE_NAME-$VERSION && cp -a {toxinidir}/debian . && mk-origtargz --rename ../$PACKAGE_NAME-$VERSION.tar.gz && dpkg-buildpackage -us -uc --no-check-builddeps --build=source "
sh -c "cd dist && dcmd zip latest.zip *.changes"
http -f POST https://{env:JENKINS_USER}:{env:JENKINS_TOKEN}@jenkins.intra.logilab.fr/job/pkg-from-dsc/buildWithParameters DIST=buster source.zip@dist/latest.zip REPO=buster PUBLISH=true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment