GitHub CI [Linux, FFmpeg]: build rav1e

+ do not use yasm for SVT - nasm-mozilla (nasm 2.14) installed in
this commit is sufficient
This commit is contained in:
Martin Pulec
2021-07-14 16:22:36 +02:00
parent 6a27ce5ad6
commit eb7977c8d8
4 changed files with 34 additions and 1 deletions

View File

@@ -78,6 +78,19 @@ jobs:
run: |
. .github/scripts/environment.sh
.github/scripts/Linux/prepare.sh
- name: Cache rav1e
id: cache-rav1e
uses: actions/cache@v2
with:
path: rav1e
key: cache-rav1e-${{ runner.os }}-${{ hashFiles('.github/scripts/Linux/rav1e.sh') }}
- name: Build rav1e
if: steps.cache-rav1e.outputs.cache-hit != 'true'
run: .github/scripts/Linux/rav1e.sh
- name: Install rav1e
run: |
sudo cp -r rav1e/install/* /
sudo ldconfig
- name: Cache FFmpeg
id: cache-ffmpeg
uses: actions/cache@v2