Page MenuHomec4science

make-wheels.sh
No OneTemporary

File Metadata

Created
Sat, Apr 27, 08:43

make-wheels.sh

#!/usr/bin/env bash
set -eo pipefail
set +x
export PLAT=manylinux2014_x86_64
source /etc/profile
function repair_wheel {
wheel="$1"
if ! auditwheel show "$wheel"; then
echo "Skipping non-platform wheel $wheel"
else
auditwheel repair "$wheel" --plat "$PLAT"
fi
}
# Compile wheels
for PYBIN in /opt/python/cp3*/bin; do
if "${PYBIN}/python" --version | grep -q 3.11; then
echo "Skip python version 3.11"
continue
fi
ccache --zero-stats
echo "${PYBIN}/pip" wheel . --no-deps -w dist/
"${PYBIN}/pip" wheel . --no-deps -w dist/
ccache --show-stats
done
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${CI_AKANTU_INSTALL_PREFIX}/lib64
# Bundle external shared libraries into the wheels
for whl in dist/*.whl; do
echo repair_wheel "$whl"
repair_wheel "$whl"
done

Event Timeline