-
Notifications
You must be signed in to change notification settings - Fork 47
/
build_many_linux.sh
executable file
·47 lines (39 loc) · 1.72 KB
/
build_many_linux.sh
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
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/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;