Skip to content

Commit ef223f5

Browse files
authored
Merge pull request #8658 from radarhere/giflib
Corrected installing ImageMagick on cifuzz
2 parents 9ae8cb8 + 1d771ff commit ef223f5

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/wheels-dependencies.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function build_harfbuzz {
9999

100100
function build {
101101
build_xz
102-
if [ -z "$IS_ALPINE" ] && [ -z "$IS_MACOS" ]; then
102+
if [ -z "$IS_ALPINE" ] && [ -z "$SANITIZER" ] && [ -z "$IS_MACOS" ]; then
103103
yum remove -y zlib-devel
104104
fi
105105
build_zlib_ng
@@ -138,6 +138,8 @@ function build {
138138
# For giflib 5.2.2
139139
elif [ -n "$IS_ALPINE" ]; then
140140
apk add imagemagick
141+
elif [ -n "$SANITIZER" ]; then
142+
apt-get install -y imagemagick
141143
else
142144
if [[ "$MB_ML_VER" == "_2_28" ]]; then
143145
yum install -y epel-release

0 commit comments

Comments
 (0)