.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:
parent
044280c538
commit
f37b699349
|
@ -25,7 +25,7 @@ permissions:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-android:
|
build-android:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- id: checkout
|
- id: checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -34,10 +34,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y --no-install-recommends \
|
sudo apt-get install -y --no-install-recommends \
|
||||||
ninja-build \
|
meson \
|
||||||
ccache \
|
ccache \
|
||||||
quilt
|
quilt
|
||||||
pip3 install --user meson==1.3.0
|
|
||||||
|
|
||||||
- id: cache-ccache
|
- id: cache-ccache
|
||||||
uses: hendrikmuhs/ccache-action@v1
|
uses: hendrikmuhs/ccache-action@v1
|
||||||
|
|
Loading…
Reference in New Issue