Fix android workflows

Meson 1.3.0 broke parentheses in machine files so we'll be using 1.2.3 for now.
This commit is contained in:
Tamás Bálint Misius 2023-11-23 18:46:33 +01:00
parent 1c1e3aaf5a
commit a594ae996d
No known key found for this signature in database
GPG Key ID: 5B472A12F6ECA9F2

View File

@ -36,7 +36,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: python -m pip install meson ninja
- run: python -m pip install meson==1.2.3 ninja # TODO: go back to using latest meson once https://github.com/mesonbuild/meson/pull/12544 is live
- id: prepare
run: python ./.github/prepare.py
env:
@ -64,7 +64,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: python -m pip install meson ninja
- run: python -m pip install meson==1.2.3 ninja # TODO: go back to using latest meson once https://github.com/mesonbuild/meson/pull/12544 is live
- if: matrix.bsh_build_platform == 'darwin'
run: brew install bash coreutils
- run: bash -c './.github/build.sh'