Merge "Use -o with grep to guarantee filename position"
[releng/global-jjb.git] / shell / pypi-dist-build.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2019 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> pypi-dist-build.sh"
12
13 # Script to create Python source and binary distributions
14 # Requires project file "setup.py"
15
16 # Ensure we fail the job if any steps fail.
17 set -eu -o pipefail
18
19 virtualenv -p python3 /tmp/pypi
20 PATH=/tmp/pypi/bin:$PATH
21
22 echo "INFO: installing twine to check distributions"
23 pip install -q twine
24
25 bdist=""
26 if $BUILD_BDIST_WHEEL; then
27     echo "INFO: installing wheel to build binary distribution"
28     pip install -q wheel
29     bdist="bdist_wheel"
30 fi
31
32 echo "INFO: cd to tox-dir $TOX_DIR"
33 cd "$WORKSPACE/$TOX_DIR"
34
35 echo "INFO: creating distributions"
36 python3 setup.py sdist $bdist
37
38 echo "INFO: checking distributions"
39 twine check dist/*
40
41 echo "---> pypi-dist-build.sh ends"