diff options
author | Fantix King <fantix.king@gmail.com> | 2021-02-09 19:17:25 -0500 |
---|---|---|
committer | Fantix King <fantix.king@gmail.com> | 2021-02-09 19:10:17 -0600 |
commit | c6d3c86914ff3cacdb750efb3ca1f94efe7d3369 (patch) | |
tree | 38ab5e136edca4c3153385848f48a8f934fcd133 | |
parent | f0b4fd40fc4431329754b3be3cec0630827df98c (diff) | |
download | immutables-c6d3c86914ff3cacdb750efb3ca1f94efe7d3369.tar.gz immutables-c6d3c86914ff3cacdb750efb3ca1f94efe7d3369.zip |
Workaround Github Action issue
Refs actions/runner#781, add LD_LIBRARY_PATH manually here for now
before an upstream fix is added.
-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" |