Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/build_test_deploy_all_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,13 @@ jobs:
env:
CIBW_BUILD: ${{ matrix.cibw_build }}
CIBW_ARCHS: ${{ matrix.archs }}
CIBW_ENVIRONMENT: "PIP_ONLY_BINARY=pillow PIP_NO_BUILD_ISOLATION=1"
CIBW_BEFORE_ALL: "pip install --only-binary=:all: pillow"
CIBW_ENVIRONMENT: >
PIP_ONLY_BINARY=pillow
PIP_NO_BUILD_ISOLATION=1
CL_INC_DIR=/usr/include
CL_LIB_DIR=/usr/lib/x86_64-linux-gnu
CL_LIBNAME=OpenCL
CIBW_BEFORE_ALL: "apt-get update && apt-get install -y ocl-icd-opencl-dev && pip install --only-binary=:all: pillow"

- name: Test wheels (only on macOS ARM64)
if: matrix.os == 'macOS-ARM'
Expand Down
Loading