Skip to content

Commit

Permalink
Merge pull request python-pillow#8658 from radarhere/giflib
Browse files Browse the repository at this point in the history
Corrected installing ImageMagick on cifuzz
  • Loading branch information
hugovk authored Jan 4, 2025
2 parents 9ae8cb8 + 1d771ff commit ef223f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/wheels-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function build_harfbuzz {

function build {
build_xz
if [ -z "$IS_ALPINE" ] && [ -z "$IS_MACOS" ]; then
if [ -z "$IS_ALPINE" ] && [ -z "$SANITIZER" ] && [ -z "$IS_MACOS" ]; then
yum remove -y zlib-devel
fi
build_zlib_ng
Expand Down Expand Up @@ -138,6 +138,8 @@ function build {
# For giflib 5.2.2
elif [ -n "$IS_ALPINE" ]; then
apk add imagemagick
elif [ -n "$SANITIZER" ]; then
apt-get install -y imagemagick
else
if [[ "$MB_ML_VER" == "_2_28" ]]; then
yum install -y epel-release
Expand Down

0 comments on commit ef223f5

Please sign in to comment.