CI: Install meson and ninja when building

Add meson and ninja-build to the prerequisites so we actually build
picolibc.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
This commit is contained in:
Chris Packham 2022-07-26 16:11:26 +12:00
parent 0100c9b218
commit 320710f2a9
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ jobs:
- name: prereq Linux
if: ${{ runner.os == 'Linux' }}
run: |
sudo apt-get install -y gperf help2man libtool-bin
sudo apt-get install -y gperf help2man libtool-bin meson ninja-build
echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH
- name: prereq macOS
if: ${{ runner.os == 'macOS' }}

View File

@ -16,7 +16,7 @@ jobs:
- name: "prereq Linux"
if: ${{ runner.os == 'Linux' }}
run: |
sudo apt-get install -y gperf help2man libtool-bin
sudo apt-get install -y gperf help2man libtool-bin meson ninja-build
- name: "prereq macOS"
if: ${{ runner.os == 'macOS' }}
run: |