We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b45d83 commit c9abce5Copy full SHA for c9abce5
.github/workflows/wheels.yml
@@ -52,6 +52,7 @@ jobs:
52
- os: ubuntu-latest
53
python: "310"
54
platform: manylinux_x86_64
55
+ install_libffi_devel: "1"
56
57
# macos builds
58
- os: macos-latest
@@ -89,7 +90,7 @@ jobs:
89
90
CIBW_BEFORE_TEST: pip install -r {project}/test_requirements.txt
91
# Installs libffi so that cffi can be built from source when needed
92
CIBW_BEFORE_TEST_LINUX: >
- yum install -y libffi-devel &&
93
+ [[ "${{ matrix.install_libffi_devel }}" == "1" ]] && yum install -y libffi-devel;
94
pip install -r {project}/test_requirements.txt
95
CIBW_TEST_COMMAND: bash {project}/tools/wheels/cibw_test_command.sh {project}
96
0 commit comments