1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#!/usr/bin/env bash
# This is the script builds the final wheel packages for shipping. The major difference between this script and the
# scripts/ci/build.sh is that this script doesn't build testsdk and test packages. It doesn't update version string,
# either. Therefore this script is shorter and cleaner.
set -ev
: "${BUILD_STAGINGDIRECTORY:?BUILD_STAGINGDIRECTORY environment variable not set}"
: "${BUILD_SOURCESDIRECTORY:=`cd $(dirname $0); cd ../../../; pwd`}"
cd $BUILD_SOURCESDIRECTORY
branch=$1
echo "Branch $branch"
echo "Search setup files from `pwd`."
python --version
pip install -U pip setuptools wheel
pip list
script_dir=`cd $(dirname $BASH_SOURCE[0]); pwd`
if [[ ! $branch =~ ^release ]]; then
. $script_dir/../../ci/version.sh post`date -u '+%Y%m%d%H%M%S'`
fi
for setup_file in $(find src -name 'setup.py' | grep -v azure-cli-testsdk); do
pushd `dirname $setup_file`
python setup.py bdist_wheel -d $BUILD_STAGINGDIRECTORY
python setup.py sdist -d $BUILD_STAGINGDIRECTORY
popd
done
|