X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fpypi-dist-build.sh;h=9341a1ff6f066ccf1dda3c2783709889e92fde6f;hb=e1a8dc64cfe10360ebdcadd28806adf800760ce7;hp=eb10371b34e86020bdcc4e15ee30326ed7b66572;hpb=2ded6bf745aeb45cd14f9d09bd5822ebaf2bc1a2;p=releng%2Fglobal-jjb.git diff --git a/shell/pypi-dist-build.sh b/shell/pypi-dist-build.sh index eb10371b..9341a1ff 100644 --- a/shell/pypi-dist-build.sh +++ b/shell/pypi-dist-build.sh @@ -16,18 +16,26 @@ echo "---> pypi-dist-build.sh" # Ensure we fail the job if any steps fail. set -eu -o pipefail +echo "INFO: creating virtual environment" virtualenv -p python3 /tmp/pypi PATH=/tmp/pypi/bin:$PATH +pipup="python -m pip install -q --upgrade setuptools twine wheel" +echo "INFO: $pipup" +$pipup bdist="" if $BUILD_BDIST_WHEEL; then - echo "INFO: installing wheel to build binary distribution" - pip install wheel + echo "INFO: adding wheel to build binary distribution" bdist="bdist_wheel" fi echo "INFO: cd to tox-dir $TOX_DIR" cd "$WORKSPACE/$TOX_DIR" + echo "INFO: creating distributions" python3 setup.py sdist $bdist + +echo "INFO: checking distributions" +twine check dist/* + echo "---> pypi-dist-build.sh ends"