Skip to content

Commit 78b2458

Browse files
committed
Replace yasm with nasm for FFmpeg 8.0
FFmpeg 8.0 requires nasm instead of yasm as the assembler. Update all build jobs to install nasm.
1 parent b3e2aa2 commit 78b2458

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install dependencies
2020
run: |
2121
sudo apt-get update -y && \
22-
sudo apt-get install -y yasm
22+
sudo apt-get install -y nasm
2323
- name: Install ARM64 compiler
2424
if: env.ARCH == 'arm64'
2525
run: |
@@ -46,7 +46,7 @@ jobs:
4646
- name: Install dependencies
4747
run: |
4848
sudo apt-get update -y && \
49-
sudo apt-get install -y yasm mingw-w64
49+
sudo apt-get install -y nasm mingw-w64
5050
- name: Build
5151
run: ./build-windows.sh
5252
- name: Archive production artifacts
@@ -68,7 +68,7 @@ jobs:
6868
steps:
6969
- uses: actions/checkout@v3
7070
- name: Install dependencies
71-
run: brew install yasm
71+
run: brew install nasm
7272
- name: Build
7373
run: ./build-macos.sh
7474
- name: Archive artifacts

0 commit comments

Comments
 (0)