Fix rtd merge job to handle new tag uploaded
[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 bdist=""
23 if $BUILD_BDIST_WHEEL; then
24     echo "INFO: installing wheel to build binary distribution"
25     pip install -q wheel
26     bdist="bdist_wheel"
27 fi
28
29 echo "INFO: cd to tox-dir $TOX_DIR"
30 cd "$WORKSPACE/$TOX_DIR"
31
32 echo "INFO: creating distributions"
33 python3 setup.py sdist $bdist
34
35 echo "---> pypi-dist-build.sh ends"