From c3d2ef1b1f4e9f9d5c98bbcf400948cf013dfbec Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Fri, 11 Jul 2025 19:27:23 +0200 Subject: [PATCH] Remove redundant ninja install for GA macOS runner The ninja package is already installed, so this triggered a warning: > ninja 1.13.0 is already installed and up-to-date. To reinstall 1.13.0, > run: brew reinstall ninja --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 49402a6e..27e3abf2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -202,8 +202,7 @@ jobs: - name: Install dependencies run: | - brew install meson ninja nasm libiconv zlib automake autoconf \ - libtool + brew install meson nasm libiconv zlib automake autoconf libtool - name: Build env: @@ -245,7 +244,7 @@ jobs: uses: actions/checkout@v4 - name: Install dependencies - run: brew install meson ninja nasm libiconv zlib automake + run: brew install meson nasm libiconv zlib automake # autoconf and libtool are already installed on macos-13 - name: Build