Skip to content

Commit

Permalink
Fixed building libavif on oss-fuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Jan 18, 2025
1 parent 492b957 commit 9a98882
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wheels-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@ function build_libavif {

python3 -m pip install meson ninja

if [[ "$PLAT" == "x86_64" ]]; then
if [[ "$PLAT" == "x86_64" ]] || [ -n "$SANITIZER" ]; then
build_simple nasm 2.16.03 https://www.nasm.us/pub/nasm/releasebuilds/2.16.03
fi

# For rav1e
curl https://sh.rustup.rs -sSf | sh -s -- -y
. "$HOME/.cargo/env"
if [ -z "$IS_ALPINE" ] && [ -z "$IS_MACOS" ]; then
if [ -z "$IS_ALPINE" ] && [ -z "$SANITIZER" ] && [ -z "$IS_MACOS" ]; then
yum install -y perl
if [[ "$MB_ML_VER" == 2014 ]]; then
yum install -y perl-IPC-Cmd
Expand Down

0 comments on commit 9a98882

Please sign in to comment.