From 57a8503016b2374f670fc9313ccc6da55e5a8bdd Mon Sep 17 00:00:00 2001 From: Totto16 Date: Tue, 3 Dec 2024 00:38:49 +0100 Subject: [PATCH] ci: fix android build for x86_64, install nasm, which is needed for the ffmpeg build --- .github/workflows/android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 2cd1a994..35c8c1d7 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -30,10 +30,10 @@ jobs: run: | pip install meson --break-system-packages - - name: Setup ninja + - name: Setup dependencies run: | sudo apt-get update - sudo apt-get install ninja-build jq -y --no-install-recommends + sudo apt-get install ninja-build jq nasm -y --no-install-recommends - name: Setup JDK uses: actions/setup-java@v4