| # Usage: | |
| # 1) update version information | |
| # 2) run from root directory of TileDB-Py checkout | |
| # 3) test and upload wheels to PyPI | |
| set -xeu | |
| export LIBTILEDB_VERSION=2.5.3 | |
| export TILEDBPY_VERSION=0.11.5 | |
| export CIBW_MANYLINUX_AARCH64_IMAGE=wheel-host-aarch64.manylinux2014-$LIBTILEDB_VERSION | |
| export CIBW_SKIP='cp36-* cp310-* pp-* *_i686 pp* *-musllinux*' | |
| export CIBW_PLATFORM='linux' | |
| export CIBW_ENVIRONMENT='TILEDB_PATH=/usr/local/' | |
| export CIBW_BUILD_VERBOSITY=1 | |
| export CIBW_BEFORE_TEST="pip install -r misc/requirements_wheel.txt" | |
| export CIBW_TEST_COMMAND="python -c 'import tiledb'" | |
| export TILEDB_WHEEL_BUILD=1 | |
| docker build --build-arg=LIBTILEDB_VERSION=$LIBTILEDB_VERSION --build-arg TILEDBPY_VERSION=$TILEDBPY_VERSION -t $CIBW_MANYLINUX_AARCH64_IMAGE -f misc/pypi_linux/Dockerfile.aarch64.manylinux2014 . | |
| rm -rf /tmp/cibuildwheel_venv | |
| python3 -m venv /tmp/cibuildwheel_venv | |
| . /tmp/cibuildwheel_venv/bin/activate | |
| pip install cibuildwheel | |
| cibuildwheel --platform=linux --output-dir=wheelhouse . | |