File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,10 @@ jobs:
115
115
else
116
116
libc=${MB_ML_LIBC:-manylinux}
117
117
docker_image=quay.io/pypa/${libc}${MB_ML_VER}_${PLAT}
118
- docker run --rm -e INTERFACE64="${INTERFACE64}" -v $(pwd):/openblas $docker_image /bin/bash -xe /openblas/travis-ci/build_wheel.sh
118
+ docker run --rm -e INTERFACE64="${INTERFACE64}" \
119
+ -e MB_ML_LIBC="${MB_ML_LIBC} \
120
+ -v $(pwd):/openblas $docker_image \
121
+ /bin/bash -xe /openblas/travis-ci/build_wheel.sh
119
122
fi
120
123
121
124
- uses : actions/upload-artifact@v3
Original file line number Diff line number Diff line change 59
59
rm dist/scipy_openblas* -none-any.whl
60
60
# Add an RPATH to libgfortran:
61
61
# https://github.com/pypa/auditwheel/issues/451
62
+ if [ " $MB_ML_LIBC " == " musllinux" ]; then
63
+ apk add zip
64
+ else
65
+ yum install -y zip
66
+ fi
62
67
unzip dist/* .whl " *libgfortran*"
63
68
patchelf --force-rpath --set-rpath ' $ORIGIN' * /lib/libgfortran*
64
69
zip dist/* .whl * /lib/libgfortran*
You can’t perform that action at this time.
0 commit comments