From d4987c3a78795935021a8f77fd44a721002b1aa3 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Sun, 15 May 2022 22:38:46 -0700 Subject: [PATCH] ci: update brew before installing ninja --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7bd345ed3..4f1848461 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -343,11 +343,16 @@ jobs: if: github.event_name == 'push' continue-on-error: true + - name: Install Ninja + shell: bash + run: | + brew update + brew install ninja + - name: Configure CMake shell: bash working-directory: ${{ runner.workspace }}/build run: | - brew install ninja PATH=$DEP_LOCATION:$DEP_LOCATION/bin:$DEP_LOCATION/include:$DEP_LOCATION/lib:$DEP_LOCATION/crashpad:$PATH \ cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} \ -DCMAKE_OSX_DEPLOYMENT_TARGET=${{ matrix.min-deploy }} -G "${{ matrix.cmake-gen }}" \