Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Dec 4, 2024
1 parent 526147a commit 72856bd
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/wheels-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,12 @@ function build_rav1e {
fi

local out_dir=$(fetch_unpack https://github.com/xiph/rav1e/archive/refs/tags/v$RAV1E_VERSION.tar.gz)
(cd $out_dir \
&& cargo install cargo-c \
&& sudo cargo cinstall --release)
cargo install cargo-c
if [[ -n "$IS_MACOS" ]]; then
(cd $out_dir && sudo cargo cinstall --release)
else
(cd $out_dir && cargo cinstall --release)
fi
touch rav1e-stamp
}

Expand Down

0 comments on commit 72856bd

Please sign in to comment.