.github/workflows/build_android.yml: switch to Ubuntu 24.04 as well

Since 24.04 comes with Meson 1.3.2, we can install it with "apt-get"
instead of "pip".
This commit is contained in:
Max Kellermann 2024-07-05 17:26:49 +02:00
parent 044280c538
commit f37b699349
1 changed files with 2 additions and 3 deletions

View File

@ -25,7 +25,7 @@ permissions:
jobs:
build-android:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- id: checkout
uses: actions/checkout@v4
@ -34,10 +34,9 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
ninja-build \
meson \
ccache \
quilt
pip3 install --user meson==1.3.0
- id: cache-ccache
uses: hendrikmuhs/ccache-action@v1