X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fpypi-dist-build.sh;fp=shell%2Fpypi-dist-build.sh;h=8baeac1e3686f05ce605545178276d09e8630c4c;hb=6d0b661360e45fe139ff9689c3ff23f657bad599;hp=eb10371b34e86020bdcc4e15ee30326ed7b66572;hpb=6df0883fb085c17d7c53480783034cac21133399;p=releng%2Fglobal-jjb.git diff --git a/shell/pypi-dist-build.sh b/shell/pypi-dist-build.sh index eb10371b..8baeac1e 100644 --- a/shell/pypi-dist-build.sh +++ b/shell/pypi-dist-build.sh @@ -22,12 +22,14 @@ PATH=/tmp/pypi/bin:$PATH bdist="" if $BUILD_BDIST_WHEEL; then echo "INFO: installing wheel to build binary distribution" - pip install wheel + pip install -q wheel 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 "---> pypi-dist-build.sh ends"