diff options
author | Chris Packham <judge.packham@gmail.com> | 2024-09-30 13:19:07 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2024-10-01 13:58:23 +1300 |
commit | 0d2e5c751b5a667503039b545ea73ff565808a35 (patch) | |
tree | 1b7dc4a8f61569fbdac3677a15dbef646885e4ed | |
parent | 63fdc9cb3735aa8da4381f0a59169e55a8590d11 (diff) | |
download | crosstool-ng-0d2e5c751b5a667503039b545ea73ff565808a35.tar.gz crosstool-ng-0d2e5c751b5a667503039b545ea73ff565808a35.tar.bz2 crosstool-ng-0d2e5c751b5a667503039b545ea73ff565808a35.zip |
CI: Install meson and ninja for macOS
Meson and Ninja are used by picolibc. Explicitly install these tools
which we appear to have been getting by some transitive dependency up to
now.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
-rw-r--r-- | .github/workflows/continuous-integration-workflow.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index c25a721b..eafc462b 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -22,7 +22,7 @@ jobs: if: ${{ runner.os == 'macOS' }} run: | brew install autoconf automake bash binutils gawk gnu-sed \ - gnu-tar help2man make ncurses texinfo libtool + gnu-tar help2man libtool make meson ncurses ninja texinfo - name: "build ct-ng" run: | if [ "$RUNNER_OS" == "macOS" ]; then |