X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fpypi-dist-build.sh;h=b2be4af0562d8678379e5c582b9d0e4067640e75;hb=a3761383bab14e98164249a699d02c3e6b0a900e;hp=8baeac1e3686f05ce605545178276d09e8630c4c;hpb=0f5407d52cb7483a04426c49defca6553ac01aaf;p=releng%2Fglobal-jjb.git diff --git a/shell/pypi-dist-build.sh b/shell/pypi-dist-build.sh index 8baeac1e..b2be4af0 100644 --- a/shell/pypi-dist-build.sh +++ b/shell/pypi-dist-build.sh @@ -16,13 +16,15 @@ echo "---> pypi-dist-build.sh" # Ensure we fail the job if any steps fail. set -eu -o pipefail -virtualenv -p python3 /tmp/pypi -PATH=/tmp/pypi/bin:$PATH +# shellcheck disable=SC1090 +source ~/lf-env.sh + +# Version controlled by JJB_VERSION +lf-activate-venv setuptools==65.7.0 urllib3~=1.26.15 twine wheel readline bdist="" if $BUILD_BDIST_WHEEL; then - echo "INFO: installing wheel to build binary distribution" - pip install -q wheel + echo "INFO: adding wheel to build binary distribution" bdist="bdist_wheel" fi @@ -32,4 +34,7 @@ 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"