Skip to content

Commit 9f5666d

Browse files
committed
install Pillow dependencies for 32 bit
Signed-off-by: Alexander Piskun <[email protected]>
1 parent b763225 commit 9f5666d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build-cache-deps.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ jobs:
4747
env:
4848
OS_PACKAGES: "fribidi-dev harfbuzz-dev jpeg-dev lcms2-dev openjpeg-dev"
4949

50+
- name: 32-bit manylinux preparations
51+
if: matrix.cibw_buildlinux == 'manylinux' && matrix.cibw_arch == 'i686'
52+
run: echo INSTALL_OS_PACKAGES="yum makecache && yum install -y $OS_PACKAGES" >> $GITHUB_ENV
53+
env:
54+
OS_PACKAGES: "libjpeg-turbo-devel lcms2-devel"
55+
5056
- uses: actions/cache@v3
5157
with:
5258
path: ${{ env.BUILD_DIR }}
@@ -113,6 +119,12 @@ jobs:
113119
env:
114120
OS_PACKAGES: "fribidi-dev harfbuzz-dev jpeg-dev lcms2-dev openjpeg-dev"
115121

122+
- name: 32-bit manylinux preparations
123+
if: matrix.cibw_buildlinux == 'manylinux' && matrix.cibw_arch == 'i686'
124+
run: echo INSTALL_OS_PACKAGES="yum makecache && yum install -y $OS_PACKAGES" >> $GITHUB_ENV
125+
env:
126+
OS_PACKAGES: "libjpeg-turbo-devel lcms2-devel"
127+
116128
- uses: actions/cache@v3
117129
with:
118130
path: ${{ env.BUILD_DIR }}

0 commit comments

Comments
 (0)