diff options
Diffstat (limited to '.github/workflows/build-manylinux-wheels.sh')
-rwxr-xr-x | .github/workflows/build-manylinux-wheels.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/build-manylinux-wheels.sh b/.github/workflows/build-manylinux-wheels.sh index 53ed6d3..0fdaf57 100755 --- a/.github/workflows/build-manylinux-wheels.sh +++ b/.github/workflows/build-manylinux-wheels.sh @@ -10,6 +10,9 @@ if [ "${PY_MAJOR}" -lt "4" -a "${PY_MINOR}" -lt "8" ]; then ML_PYTHON_VERSION+="m" fi +# Temporary workaround for https://github.com/actions/runner/issues/781 +export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib + # Compile wheels PYTHON="/opt/python/${ML_PYTHON_VERSION}/bin/python" PIP="/opt/python/${ML_PYTHON_VERSION}/bin/pip" |