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 }}" \