Skip to content

Commit

Permalink
Wheel deps update (#107)
Browse files Browse the repository at this point in the history
* avoid libffi broken default make target

* something's changed in the latest manylinux containers that broke the default `make` target for libffi- `make install` seems to work fine.

* bump Linux wheel-embedded libffi to 3.4.6

* bump Linux wheel-embedded libffi to 3.4.6
  • Loading branch information
nitzmahone authored Aug 5, 2024
1 parent 16b143d commit 4ea20fd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -272,13 +272,14 @@ jobs:
CIBW_BUILD: ${{ matrix.spec }}
CIBW_BEFORE_BUILD: |
set -eux && \
curl -L -O https://github.com/libffi/libffi/archive/v3.4.2.tar.gz && \
tar zxf v3.4.2.tar.gz && cd libffi-3.4.2 && \
curl -L -O https://github.com/libffi/libffi/archive/v3.4.6.tar.gz && \
tar zxf v3.4.6.tar.gz && cd libffi-3.4.6 && \
((command -v apk && apk add libtool) || true) && \
./autogen.sh && \
./configure --without-gcc-arch --disable-docs --with-pic --enable-shared=no && \
make && \
make install
make install && \
cd .. && \
rm -rf libffi-3.4.6
CIBW_ENVIRONMENT_PASS_LINUX: CFLAGS # ensure that the build container can see our overridden build config
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux_img || '' }}
CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.manylinux_img || '' }}
Expand Down

0 comments on commit 4ea20fd

Please sign in to comment.