File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 45
45
- name : build ffmpeg
46
46
run : |
47
47
while sleep 300; do echo "=====[ $SECONDS seconds still running ]====="; done &
48
- SKIPINSTALL=yes VERBOSE=yes ./build-ffmpeg --build --enable-gpl-and-non-free
48
+ SKIPINSTALL=yes VERBOSE=yes SKIPRAV1E=yes ./build-ffmpeg --build --enable-gpl-and-non-free
49
49
kill %1
50
50
- name : check shared library
51
51
run : |
Original file line number Diff line number Diff line change @@ -499,13 +499,15 @@ if ! $MACOS_M1; then
499
499
fi
500
500
501
501
if command_exists " cargo" ; then
502
- if build " rav1e" " 0.6.3" ; then
503
- execute cargo install --version " 0.9.20+cargo-0.71" cargo-c
504
- download " https://github.com/xiph/rav1e/archive/refs/tags/v0.6.3.tar.gz"
505
- execute cargo cinstall --prefix=" ${WORKSPACE} " --library-type=staticlib --crt-static --release
506
- build_done " rav1e" " 0.6.3"
502
+ if [[ ! " $SKIPRAV1E " == " yes" ]]; then
503
+ if build " rav1e" " 0.6.3" ; then
504
+ execute cargo install --version " 0.9.20+cargo-0.71" cargo-c
505
+ download " https://github.com/xiph/rav1e/archive/refs/tags/v0.6.3.tar.gz"
506
+ execute cargo cinstall --prefix=" ${WORKSPACE} " --library-type=staticlib --crt-static --release
507
+ build_done " rav1e" " 0.6.3"
508
+ fi
509
+ CONFIGURE_OPTIONS+=(" --enable-librav1e" )
507
510
fi
508
- CONFIGURE_OPTIONS+=(" --enable-librav1e" )
509
511
fi
510
512
511
513
if $NONFREE_AND_GPL ; then
You can’t perform that action at this time.
0 commit comments