diff options
author | Chris Packham <judge.packham@gmail.com> | 2022-07-26 16:11:26 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-07-27 20:17:23 +1200 |
commit | 320710f2a9a969f163c5d6c83a02877e7dfd0cba (patch) | |
tree | 38ae2160bebac442923e195fc53c5a0db89c554f /.github | |
parent | 0100c9b21863aa917b90f77af823978bb0bb7130 (diff) | |
download | crosstool-ng-320710f2a9a969f163c5d6c83a02877e7dfd0cba.tar.gz crosstool-ng-320710f2a9a969f163c5d6c83a02877e7dfd0cba.tar.bz2 crosstool-ng-320710f2a9a969f163c5d6c83a02877e7dfd0cba.zip |
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>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-toolchains.yml | 2 | ||||
-rw-r--r-- | .github/workflows/continuous-integration-workflow.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-toolchains.yml b/.github/workflows/build-toolchains.yml index 3b792200..6d265efe 100644 --- a/.github/workflows/build-toolchains.yml +++ b/.github/workflows/build-toolchains.yml @@ -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' }} diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 138fc807..5bc8a1e2 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -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: | |