From 64af2580085fdf2a084f6104b4b4d2aecfa0b13f Mon Sep 17 00:00:00 2001 From: Bruno Manuel Santos Saraiva Date: Tue, 8 Jul 2025 16:42:40 +0100 Subject: [PATCH] gha update --- .github/workflows/build_test_deploy_all_wheels.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_test_deploy_all_wheels.yml b/.github/workflows/build_test_deploy_all_wheels.yml index e84f6ceb..5dbde395 100644 --- a/.github/workflows/build_test_deploy_all_wheels.yml +++ b/.github/workflows/build_test_deploy_all_wheels.yml @@ -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'