48 строки
1.7 KiB
Bash
Executable File
48 строки
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Inspired by https://github.com/pypa/python-manylinux-demo/blob/a615d78e5042c01a03e1bbb1ca78603c90dbce1f/travis/build-wheels.sh
|
|
|
|
# To build a 64bit manylinux1 wheel (for e.g. Python 3.8), run:
|
|
# docker run --rm -v $PWD:/data -e "PYTHON_VERSION=cp38-cp38" -e "PLATFORM=manylinux1_x86_64" -e "UAMQP_REBUILD_PYX=True" azuresdkimages.azurecr.io/manylinux_crypto_x64 /data/build_many_linux.sh
|
|
|
|
# To build a 64bit manylinux2010 wheel (for e.g. Python 3.8), run:
|
|
# docker run --rm -v $PWD:/data -e "PYTHON_VERSION=cp38-cp38" -e "PLATFORM=manylinux2010_x86_64" -e "UAMQP_REBUILD_PYX=True" azuresdkimages.azurecr.io/manylinux2010_crypto_x64 /data/build_many_linux.sh
|
|
|
|
export CPATH="/opt/pyca/cryptography/openssl/include"
|
|
export LIBRARY_PATH="/opt/pyca/cryptography/openssl/lib"
|
|
export OPENSSL_ROOT_DIR="/opt/pyca/cryptography/openssl"
|
|
export PYBIN="/opt/python/$PYTHON_VERSION/bin"
|
|
|
|
# Build the wheel
|
|
pushd /data;
|
|
$PYBIN/pip install cython==0.29.21 wheel;
|
|
$PYBIN/python setup.py bdist_wheel -d /wheelhouse;
|
|
rm -rf build/;
|
|
popd;
|
|
|
|
# Repair the wheel
|
|
for WHL in /wheelhouse/*; do
|
|
auditwheel repair --plat $PLATFORM $WHL -w /data/wheelhouse/;
|
|
done;
|
|
|
|
# Set up env vars to run live tests - otherwise they will be skipped.
|
|
export EVENT_HUB_HOSTNAME=""
|
|
export EVENT_HUB_NAME=""
|
|
export EVENT_HUB_SAS_POLICY=""
|
|
export EVENT_HUB_SAS_KEY=""
|
|
export IOTHUB_HOSTNAME=""
|
|
export IOTHUB_HUB_NAME=""
|
|
export IOTHUB_DEVICE=""
|
|
export IOTHUB_ENDPOINT=""
|
|
export IOTHUB_SAS_POLICY=""
|
|
export IOTHUB_SAS_KEY=""
|
|
|
|
# Test the wheel
|
|
$PYBIN/pip install "certifi>=2017.4.17" "pytest" "pylint";
|
|
$PYBIN/pip install uamqp --no-index -f /data/wheelhouse;
|
|
$PYBIN/python -c 'import uamqp;print("*****Importing uamqp from wheel successful*****")';
|
|
pushd /data;
|
|
$PYBIN/pytest -v;
|
|
popd;
|