Skip to content

Commit c9abce5

Browse files
committed
Revert "REV Revert libffi flag [cd build]"
This reverts commit 9b45d83.
1 parent 9b45d83 commit c9abce5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
- os: ubuntu-latest
5353
python: "310"
5454
platform: manylinux_x86_64
55+
install_libffi_devel: "1"
5556

5657
# macos builds
5758
- os: macos-latest
@@ -89,7 +90,7 @@ jobs:
8990
CIBW_BEFORE_TEST: pip install -r {project}/test_requirements.txt
9091
# Installs libffi so that cffi can be built from source when needed
9192
CIBW_BEFORE_TEST_LINUX: >
92-
yum install -y libffi-devel &&
93+
[[ "${{ matrix.install_libffi_devel }}" == "1" ]] && yum install -y libffi-devel;
9394
pip install -r {project}/test_requirements.txt
9495
CIBW_TEST_COMMAND: bash {project}/tools/wheels/cibw_test_command.sh {project}
9596

0 commit comments

Comments
 (0)